From 074876d933c3dbd7f50dc591a8674725b0e08aa8 Mon Sep 17 00:00:00 2001 From: Timo K Date: Thu, 3 Jul 2025 15:36:06 +0200 Subject: [PATCH] no defaults at all Signed-off-by: Timo K --- src/livekit/useLivekit.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/livekit/useLivekit.ts b/src/livekit/useLivekit.ts index 06a07cf0..8f302e7a 100644 --- a/src/livekit/useLivekit.ts +++ b/src/livekit/useLivekit.ts @@ -245,7 +245,6 @@ export function useLivekit( audioMuteUpdating.current = true; trackPublication = await participant.setMicrophoneEnabled( buttonEnabled.current.audio, - room.options.audioCaptureDefaults, ); audioMuteUpdating.current = false; break; @@ -253,7 +252,6 @@ export function useLivekit( videoMuteUpdating.current = true; trackPublication = await participant.setCameraEnabled( buttonEnabled.current.video, - room.options.videoCaptureDefaults, ); videoMuteUpdating.current = false; break;