From 4075d6e2dacc9919b4fb9f801e157e8f1bd08655 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Wed, 5 Nov 2025 10:21:12 -0600 Subject: [PATCH] fix: Database check failure (release cantidate) --- src/ui/desktop/authentication/Auth.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ui/desktop/authentication/Auth.tsx b/src/ui/desktop/authentication/Auth.tsx index f6f186bb..ab7b496c 100644 --- a/src/ui/desktop/authentication/Auth.tsx +++ b/src/ui/desktop/authentication/Auth.tsx @@ -173,6 +173,10 @@ export function Auth({ }, []); useEffect(() => { + if (showServerConfig) { + return; + } + setDbHealthChecking(true); getSetupRequired() .then((res) => { @@ -195,7 +199,7 @@ export function Auth({ .finally(() => { setDbHealthChecking(false); }); - }, [setDbError, firstUserToastShown]); + }, [setDbError, firstUserToastShown, showServerConfig]); useEffect(() => { if (!registrationAllowed && !internalLoggedIn) {