From 721cccf152bcd7b1b74c0ab1138c578d355fc5ef Mon Sep 17 00:00:00 2001 From: Robert Long Date: Wed, 23 Feb 2022 15:59:16 -0800 Subject: [PATCH] Disable speaking indicator in 1-1 calls --- src/room/InCallView.jsx | 1 + src/video-grid/VideoGrid.stories.jsx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/room/InCallView.jsx b/src/room/InCallView.jsx index 8babb269..73d301dd 100644 --- a/src/room/InCallView.jsx +++ b/src/room/InCallView.jsx @@ -163,6 +163,7 @@ export function InCallView({ getAvatar={renderAvatar} showName={items.length > 2 || item.focused} audioOutputDevice={audioOutput} + disableSpeakingIndicator={items.length < 3} {...rest} /> )} diff --git a/src/video-grid/VideoGrid.stories.jsx b/src/video-grid/VideoGrid.stories.jsx index 93089729..3e97001a 100644 --- a/src/video-grid/VideoGrid.stories.jsx +++ b/src/video-grid/VideoGrid.stories.jsx @@ -64,6 +64,7 @@ export const ParticipantsTest = () => { key={item.id} name={`User ${item.id}`} showName={items.length > 2 || item.focused} + disableSpeakingIndicator={items.length < 3} {...rest} /> )}