From 9486bf1a8106a08ad361f7ebeeeccc3f1acccee2 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Wed, 10 Sep 2025 00:44:23 +0200 Subject: [PATCH] Always show server address input on SplashScreen In case the webUI wasn't hosted on the same domain as the server, the ui was stuck on the splash screen, due to the inferred server address being wrong. --- src/features/authentication/components/SplashScreen.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/features/authentication/components/SplashScreen.tsx b/src/features/authentication/components/SplashScreen.tsx index 8ba659bb..20ac60d9 100644 --- a/src/features/authentication/components/SplashScreen.tsx +++ b/src/features/authentication/components/SplashScreen.tsx @@ -18,6 +18,7 @@ export const SplashScreen = () => { return ( { }, }} /> - {import.meta.env.DEV && ( - - - - )} + + + ); };