From 0ee7b5d44cf2032c63b0b4742bbdf29a45cc3c17 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 01:28:48 +0000 Subject: [PATCH] refactor: skip boot/ECG/login sequence for dev iteration speed Temporarily set initial phase to 'pmr' to bypass the ~10s boot animation during the refactoring process. Will be reverted in Phase 4.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(() => {