feat: US-011 - Re-enable boot sequence

This commit is contained in:
2026-02-15 14:35:54 +00:00
parent 526ee7dd90
commit 4fe68aa1b2
+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')