From 30e78d768292342f42fd15bd3f5c81dbf38a25d4 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 9 Nov 2025 16:29:21 +0100 Subject: [PATCH] fix: keep login screen visible until store refresh completes --- src/App.js | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/src/App.js b/src/App.js index 13f2393..052aa2c 100644 --- a/src/App.js +++ b/src/App.js @@ -494,13 +494,11 @@ function App() { }); } } + finishSyncProgress(); } catch (err) { console.warn('Konnte Session nicht wiederherstellen:', err); - } finally { - if (ticker) { - clearInterval(ticker); - } finishSyncProgress(); + } finally { setInitializing(false); } })(); @@ -842,7 +840,16 @@ function App() { return ( <>
-
+ { + if (initializing) { + e.preventDefault(); + return; + } + handleLogin(e); + }} + >

Pickup Config Login

@@ -884,10 +891,10 @@ function App() {