Fix mute/unmute styling

This commit is contained in:
Robert Long
2021-12-06 12:19:38 -08:00
parent f57b520622
commit 4e2d1c5dcd
7 changed files with 21 additions and 39 deletions

View File

@@ -334,7 +334,7 @@ function RoomSetupView({
}))}
>
<VideoButton
enabled={localVideoMuted}
muted={localVideoMuted}
onClick={toggleLocalVideoMuted}
/>
</DropdownButton>
@@ -532,10 +532,7 @@ function InRoomView({
)}
<div className={styles.footer}>
<MicButton muted={microphoneMuted} onPress={toggleMicrophoneMuted} />
<VideoButton
enabled={localVideoMuted}
onPress={toggleLocalVideoMuted}
/>
<VideoButton muted={localVideoMuted} onPress={toggleLocalVideoMuted} />
{canScreenshare && !isSafari && (
<ScreenshareButton
enabled={isScreensharing}