diff --git a/frontend/src/lib/components/settings/PremiumInfo.svelte b/frontend/src/lib/components/settings/PremiumInfo.svelte index 748c8ab457..9ca62aa589 100644 --- a/frontend/src/lib/components/settings/PremiumInfo.svelte +++ b/frontend/src/lib/components/settings/PremiumInfo.svelte @@ -169,13 +169,23 @@ -
+
-
Plans
+
+ {#if premiumInfo?.premium && plan} + Plan: {capitalize(plan)} plan{plan === 'team' && premiumInfo.automatic_billing + ? ' (usage-based)' + : plan === 'team' + ? ` (${premiumInfo.seats} seat${premiumInfo.seats > 1 ? 's' : ''})` + : ''} + {:else} + Plan: Free plan + {/if} +
{#if customer_id} -
+
+ {#if premiumInfo?.premium && plan === 'team'} + + {/if}
+ {#if (estimatedSeats + (estimatedExecs - estimatedSeats)) * 10 > 700} + + You should consider subscribing to Cloud Enterprise + + {/if}