From c4d73f970ddc56445123be91a795b09f3e55ef0e Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Sun, 15 Feb 2026 02:14:12 +0000 Subject: [PATCH] feat: US-010 - 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')