fix(sounds): drop singleton AudioManager from SoundController effect deps

This commit is contained in:
Jannis Braun
2026-04-28 14:49:03 +02:00
parent 494585adf2
commit 081937a030
@@ -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;
}