From 081937a030e49cdd12580ba740f9e16f5b276103 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Tue, 28 Apr 2026 14:49:03 +0200 Subject: [PATCH] fix(sounds): drop singleton AudioManager from SoundController effect deps --- packages/web/src/components/voice/SoundController.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/components/voice/SoundController.tsx b/packages/web/src/components/voice/SoundController.tsx index b4e6c37c..c69cff60 100644 --- a/packages/web/src/components/voice/SoundController.tsx +++ b/packages/web/src/components/voice/SoundController.tsx @@ -271,7 +271,7 @@ export function SoundController() { if (incomingCallLoop.current) incomingCallLoop.current.stop(); if (outgoingCallLoop.current) outgoingCallLoop.current.stop(); }; - }, [audioManager, currentUser?.id, currentUser?.homeUserId]); + }, [currentUser?.id, currentUser?.homeUserId]); return null; }