fix: re-enable boot sequence after redesign

Changed initial phase from 'pmr' back to 'boot' to restore the
full boot → login → dashboard flow for production.
This commit is contained in:
2026-02-17 03:28:41 +00:00
parent 150b452bb5
commit a867c75e9b
+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')
useEffect(() => {
initModel()