feat: US-001 - Skip boot/login sequence for dev iteration

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