Merge branch 'livekit' into voip-team/rebased-multiSFU

Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
Timo K
2025-10-10 12:26:47 +02:00
12 changed files with 42 additions and 27 deletions
+4 -1
View File
@@ -436,7 +436,10 @@ export const GroupCallView: FC<Props> = ({
client={client}
matrixInfo={matrixInfo}
muteStates={muteStates}
onEnter={() => setJoined(true)}
onEnter={async () => {
setJoined(true);
return Promise.resolve();
}}
confineToRoom={confineToRoom}
hideHeader={header === HeaderStyle.None}
participantCount={participantCount}