diff --git a/frontend/src/pages/SettingsPage.tsx b/frontend/src/pages/SettingsPage.tsx index 8359d3b..5c22daf 100644 --- a/frontend/src/pages/SettingsPage.tsx +++ b/frontend/src/pages/SettingsPage.tsx @@ -435,9 +435,9 @@ export const SettingsPage: React.FC = () => { )} - {subscription?.tier === 'free' + {!subscription || subscription.tier === 'free' ? 'Upgrade to Pro or Enterprise for more features and vehicle slots.' - : subscription?.tier === 'pro' + : subscription.tier === 'pro' ? 'Pro plan with up to 5 vehicles and full features.' : 'Enterprise plan with unlimited vehicles and all features.'}