From d6b441e3521d7ecd4fa6e3e2a7ecd02025ce6d67 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 12 Dec 2025 12:29:35 +0100 Subject: [PATCH] fix: Show claim UI instead of loading screen for new users Changed loading condition from checking rondevu existence to checking setupStep. New users now see the claim UI immediately instead of being stuck on Loading. --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index d9f7842..47b68e3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -849,7 +849,7 @@ export default function App() { } }; - if (!rondevu) { + if (setupStep === 'init') { return
Loading...
; }