From 1fea3568b133d81521d24881fc954b43f35ef043 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Sun, 2 Nov 2025 01:52:29 -0600 Subject: [PATCH] fix: Server config showing in web view --- src/ui/desktop/authentication/Auth.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ui/desktop/authentication/Auth.tsx b/src/ui/desktop/authentication/Auth.tsx index 3549fc62..5ee3da8c 100644 --- a/src/ui/desktop/authentication/Auth.tsx +++ b/src/ui/desktop/authentication/Auth.tsx @@ -596,6 +596,11 @@ export function Auth({ useEffect(() => { const checkServerConfig = async () => { + if (isInElectronWebView()) { + setShowServerConfig(false); + return; + } + if (isElectron()) { try { const config = await getServerConfig();