From f7469f487f93a42106d3cf248745746443333ac8 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 03:04:51 +0000 Subject: [PATCH] chore: bypass boot sequence for faster dev iteration Temporarily set initial phase to 'pmr' to skip boot/ECG/login during content audit work. Will be reverted in Phase 3.3. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 4a85115..40ff2a4 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -45,7 +45,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) { } function App() { - const [phase, setPhase] = useState('boot') + const [phase, setPhase] = useState('pmr') const cursorPositionRef = useRef<{ x: number; y: number } | null>(null) useEffect(() => {