fix: re-enable boot sequence after refactor

Restore useState<Phase>('boot') in App.tsx, completing the refactoring
cycle (was temporarily set to 'pmr' for faster visual review).
This commit is contained in:
2026-02-17 02:24:44 +00:00
parent 5eb46b02d8
commit 01a48ce691
+1 -1
View File
@@ -45,7 +45,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) {
} }
function App() { function App() {
const [phase, setPhase] = useState<Phase>('pmr') const [phase, setPhase] = useState<Phase>('boot')
const cursorPositionRef = useRef<{ x: number; y: number } | null>(null) const cursorPositionRef = useRef<{ x: number; y: number } | null>(null)
useEffect(() => { useEffect(() => {