From 41e3e21d970602e20bf269f608813e4417fd645a Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 23 May 2024 16:19:03 +0200 Subject: [PATCH] make it also have the setting on (dont know if it otherwise immediately hides it again) --- src/settings/useSetting.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/useSetting.ts b/src/settings/useSetting.ts index 90f3b424..77459a72 100644 --- a/src/settings/useSetting.ts +++ b/src/settings/useSetting.ts @@ -103,4 +103,4 @@ export const useAudioOutput = (): Setting => export const useVideoInput = (): Setting => useSetting("video-input", undefined); export const useShowInlineWebConsole = (): Setting => - useSetting("show-web-console", false); + useSetting("show-web-console", true);