From a867c75e9b13f170e4def178964025787301ab45 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 03:28:41 +0000 Subject: [PATCH] fix: re-enable boot sequence after redesign MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed initial phase from 'pmr' back to 'boot' to restore the full boot → login → dashboard flow for production. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 4502e9f..c0284d2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -44,7 +44,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) { } function App() { - const [phase, setPhase] = useState('pmr') + const [phase, setPhase] = useState('boot') useEffect(() => { initModel()