feat: US-028 - Re-enable boot/login sequence

This commit is contained in:
2026-02-14 21:41:46 +00:00
parent 649f4d7c68
commit c5b0f7da43
+1 -1
View File
@@ -44,7 +44,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) {
}
function App() {
const [phase, setPhase] = useState<Phase>('pmr')
const [phase, setPhase] = useState<Phase>('boot')
const cursorPositionRef = useRef<{ x: number; y: number } | null>(null)
const skipToLogin = () => setPhase('login')