diff --git a/resources/js/admin/mobile/DashboardPage.tsx b/resources/js/admin/mobile/DashboardPage.tsx index fc3bff8..933e923 100644 --- a/resources/js/admin/mobile/DashboardPage.tsx +++ b/resources/js/admin/mobile/DashboardPage.tsx @@ -199,16 +199,15 @@ export default function MobileDashboardPage() { return ( - + - + {/* 1. LIFECYCLE HERO */} )} {/* 2. PULSE STRIP */} + @@ -400,6 +400,7 @@ function LifecycleHero({ event, stats, locale, navigate, readiness, variant = 'd const nextStep = readiness.nextStep; const ctaLabel = nextStep ? nextStep.ctaLabel : t('dashboard:onboarding.hero.cta', 'Setup Complete'); const ctaAction = nextStep ? () => navigate(adminPath(nextStep.targetPath)) : undefined; + const showCta = Boolean(nextStep); return ( @@ -423,9 +424,9 @@ function LifecycleHero({ event, stats, locale, navigate, readiness, variant = 'd - + {showCta ? : null} - {!readiness.isReady ? ( + {showCta ? (