feat: Accept Payments - Stripe Integration with User Tiers (#55) #56
@@ -435,9 +435,9 @@ export const SettingsPage: React.FC = () => {
|
|||||||
)}
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
<Typography variant="body2" color="text.secondary">
|
<Typography variant="body2" color="text.secondary">
|
||||||
{subscription?.tier === 'free'
|
{!subscription || subscription.tier === 'free'
|
||||||
? 'Upgrade to Pro or Enterprise for more features and vehicle slots.'
|
? '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.'
|
? 'Pro plan with up to 5 vehicles and full features.'
|
||||||
: 'Enterprise plan with unlimited vehicles and all features.'}
|
: 'Enterprise plan with unlimited vehicles and all features.'}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|||||||
Reference in New Issue
Block a user