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

This commit is contained in:
2026-02-14 20:15:11 +00:00
parent 5ef7cdb259
commit f6463cc4b1
3 changed files with 201 additions and 1370 deletions
+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')