From 01a48ce6913d8268daa9350a80fb0744d87573a2 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 02:24:44 +0000 Subject: [PATCH] fix: re-enable boot sequence after refactor Restore useState('boot') in App.tsx, completing the refactoring cycle (was temporarily set to 'pmr' for faster visual review). --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 40ff2a4..4a85115 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -45,7 +45,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) { } function App() { - const [phase, setPhase] = useState('pmr') + const [phase, setPhase] = useState('boot') const cursorPositionRef = useRef<{ x: number; y: number } | null>(null) useEffect(() => {