From 4fe68aa1b283a334cf84401ef83e013a70e056ee Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Sun, 15 Feb 2026 14:35:54 +0000 Subject: [PATCH] feat: US-011 - Re-enable boot sequence --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 1ac335c..b54617f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -44,7 +44,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) { } function App() { - const [phase, setPhase] = useState('login') + const [phase, setPhase] = useState('boot') const cursorPositionRef = useRef<{ x: number; y: number } | null>(null) const skipToLogin = () => setPhase('login')