Fix local tile showing as unmuted when you join muted
This commit is contained in:
parent
eb500ed88e
commit
510d55d88a
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ export const VideoTile = React.forwardRef<HTMLDivElement, Props>(
|
|||
</div>
|
||||
) : (
|
||||
<div className={classNames(styles.infoBubble, styles.memberName)}>
|
||||
{microphoneMuted ? <MicMutedIcon /> : <MicIcon />}
|
||||
{microphoneMuted === false ? <MicIcon /> : <MicMutedIcon />}
|
||||
<span title={displayName}>{displayName}</span>
|
||||
{showConnectionStats && (
|
||||
<ConnectionQualityIndicator participant={sfuParticipant} />
|
||||
|
|
Loading…
Reference in a new issue