feat: US-006 - Render live dashboard behind login with blur overlay
This commit is contained in:
+5
-5
@@ -73,16 +73,16 @@ function App() {
|
||||
/>
|
||||
)}
|
||||
|
||||
{phase === 'login' && (
|
||||
<LoginScreen onComplete={() => setPhase('pmr')} />
|
||||
)}
|
||||
|
||||
{phase === 'pmr' && (
|
||||
{(phase === 'login' || phase === 'pmr') && (
|
||||
<DetailPanelProvider>
|
||||
<DashboardLayout />
|
||||
</DetailPanelProvider>
|
||||
)}
|
||||
|
||||
{phase === 'login' && (
|
||||
<LoginScreen onComplete={() => setPhase('pmr')} />
|
||||
)}
|
||||
|
||||
{(phase === 'boot' || phase === 'ecg') && (
|
||||
<SkipButton onSkip={skipToLogin} />
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user