From 5b3a0f13348acbc5e07f12365db75059b5151b05 Mon Sep 17 00:00:00 2001 From: YoJames2019 Date: Mon, 9 Feb 2026 22:22:08 -0500 Subject: [PATCH] set default mic state to enabled --- src/app/pages/client/call/CallProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/client/call/CallProvider.tsx b/src/app/pages/client/call/CallProvider.tsx index deccd4b8..f5b9b113 100644 --- a/src/app/pages/client/call/CallProvider.tsx +++ b/src/app/pages/client/call/CallProvider.tsx @@ -57,7 +57,7 @@ interface CallProviderProps { children: ReactNode; } -const DEFAULT_AUDIO_ENABLED = false; +const DEFAULT_AUDIO_ENABLED = true; const DEFAULT_VIDEO_ENABLED = false; const DEFAULT_CHAT_OPENED = false; const DEFAULT_CALL_ACTIVE = false;