Skip to content

Commit

Permalink
remove unnecessary box
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-rajpal committed Apr 4, 2023
1 parent a18993a commit bb648d5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions apps/meteor/client/views/room/components/body/LeaderBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,10 @@ const LeaderBar = ({ _id, name, username, visible, onAvatarClick }: LeaderBarPro
<Box is='button' mie='x4' onClick={handleAvatarClick}>
<UserAvatar username={username} />
</Box>
<Box fontScale='p2' mi='x4'>
<Box display='flex' alignItems='center'>
<ReactiveUserStatus uid={_id} />
<Box fontWeight={700} mis='x8'>
{name}
</Box>
<Box fontScale='p2' mi='x4' display='flex' alignItems='center'>
<ReactiveUserStatus uid={_id} />
<Box fontWeight={700} mis='x8'>
{name}
</Box>
</Box>
</Box>
Expand Down

0 comments on commit bb648d5

Please sign in to comment.