From 786c584ae2d3f976b4b124d7e07f0ea124f92f67 Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Fri, 2 Jun 2023 20:07:15 +0200 Subject: [PATCH] Fix missing tile names --- src/video-grid/VideoTile.tsx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/video-grid/VideoTile.tsx b/src/video-grid/VideoTile.tsx index 0b8cfb3..c58f8a0 100644 --- a/src/video-grid/VideoTile.tsx +++ b/src/video-grid/VideoTile.tsx @@ -70,16 +70,9 @@ export const VideoTile = forwardRef( ) : (
- { - /* If the user is speaking, it's safe to say they're unmuted. - Mute state is currently sent over to-device messages, which - aren't quite real-time, so this is an important kludge to make - sure no one appears muted when they've clearly begun talking. */ - microphoneMuted && - sfuParticipant.isCameraEnabled && - !sfuParticipant.isSpeaking && - } + {microphoneMuted && } {!sfuParticipant.isCameraEnabled && } + {name}
))}