feat: US-010 - Re-enable boot sequence

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