feat: US-001 - Skip to login phase for dev iteration

This commit is contained in:
2026-02-15 01:45:45 +00:00
parent 962729ae92
commit 05b48b995e
+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>('login')
const cursorPositionRef = useRef<{ x: number; y: number } | null>(null)
const skipToLogin = () => setPhase('login')