From c5ffdea3707c67e73edc41f7a3b89cd5d62bf53b Mon Sep 17 00:00:00 2001 From: Timo K Date: Tue, 2 Jun 2026 13:56:16 +0200 Subject: [PATCH] lint --- src/room/GroupCallView.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 73065d36..7c9009fe 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -57,7 +57,10 @@ import { } from "../UrlParams"; import { E2eeType } from "../e2ee/e2eeType"; import { useAudioContext } from "../useAudioContext"; -import { callEventAudioSounds } from "./CallEventAudioRenderer"; +import { + callEventAudioSounds, + type CallEventSounds, +} from "./CallEventAudioRenderer"; import { useLatest } from "../useLatest"; import { usePageTitle } from "../usePageTitle"; import { @@ -117,7 +120,7 @@ export const GroupCallView: FC = ({ const muteAllAudio = useBehavior(muteAllAudio$); const leaveSoundContext = useLatest( - useAudioContext({ + useAudioContext({ sounds: callEventAudioSounds, latencyHint: "interactive", muted: muteAllAudio,