Skip to content

Commit

Permalink
Fix volume indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
havfo committed Mar 15, 2024
1 parent 9d29334 commit 037eeac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/participantlist/ListPeer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const ListPeer = ({ peer, isModerator }: ListPeerProps): JSX.Element => {
{ hasVideo && /* <StyledChip disabled label={ */ <WebcamIcon fontSize='small' /> /* } variant='filled' size='small' /> */ }
{ hasAudio && /* <StyledChip disabled label={ */ <MicUnMutedIcon fontSize='small' /> /* } variant='filled' size='small' /> */ }
</StyledIcons>
<Volume consumer={micConsumer} small />
{ micConsumer && <Volume consumer={micConsumer} small /> }
<MoreButton onClick={(event) => setMoreAnchorEl(event.currentTarget)} type='iconbutton' size='small' />
</PeerDiv>
{ shouldShow && <PeerMenu anchorEl={moreAnchorEl} peerId={peer.id} onClick={handleMenuClose} /> }
Expand Down

0 comments on commit 037eeac

Please sign in to comment.