feat: US-017 - Re-enable boot/login sequence for production

Reverted initial Phase from 'pmr' to 'boot', restoring the full
boot → ECG → login → dashboard flow. All 17 user stories now pass.
This commit is contained in:
2026-02-14 18:56:31 +00:00
parent a961518ebf
commit 5ef7cdb259
3 changed files with 45 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ function SkipButton({ onSkip }: { onSkip: () => void }) {
}
function App() {
const [phase, setPhase] = useState<Phase>('pmr')
const [phase, setPhase] = useState<Phase>('boot')
const cursorPositionRef = useRef<{ x: number; y: number } | null>(null)
const skipToLogin = () => setPhase('login')