Merge branch 'livekit' into robin/audio-output-controls

This commit is contained in:
Timo
2025-05-16 11:36:33 +02:00
32 changed files with 1257 additions and 177 deletions

View File

@@ -122,6 +122,13 @@ export const GroupCallView: FC<Props> = ({
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
useEffect(() => {
logger.info("[Lifecycle] GroupCallView Component mounted");
return (): void => {
logger.info("[Lifecycle] GroupCallView Component unmounted");
};
}, []);
useEffect(() => {
window.rtcSession = rtcSession;
return (): void => {