From 8205e59950cf7358ec11cabe03de80253551844f Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Thu, 25 Sep 2025 10:50:15 +0100 Subject: [PATCH] lint --- src/room/GroupCallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index fdc93bb3..e4a6a997 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -136,7 +136,7 @@ export const GroupCallView: FC = ({ void rtcSession.updateCallIntent( muteStates.video.enabled ? "video" : "audio", ); - }, [isJoined, muteStates.video.enabled]); + }, [rtcSession, isJoined, muteStates.video.enabled]); useEffect(() => { logger.info("[Lifecycle] GroupCallView Component mounted");