feat: Accept Payments - Stripe Integration with User Tiers (#55) #56

Merged
egullickson merged 17 commits from issue-55-stripe-integration into main 2026-01-19 02:52:25 +00:00
Showing only changes of commit c407396b85 - Show all commits

View File

@@ -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>