diff --git a/packages/builder/src/components/portal/licensing/DayPassWarningModal.svelte b/packages/builder/src/components/portal/licensing/DayPassWarningModal.svelte index b1aade2ca5..341e427bf0 100644 --- a/packages/builder/src/components/portal/licensing/DayPassWarningModal.svelte +++ b/packages/builder/src/components/portal/licensing/DayPassWarningModal.svelte @@ -12,7 +12,10 @@ $: daysRemaining = $licensing.quotaResetDaysRemaining $: quotaResetDate = $licensing.quotaResetDate - $: dayPassesUsed = $licensing.usageMetrics?.dayPasses + $: dayPassesUsed = + $licensing.usageMetrics?.dayPasses > 100 + ? 100 + : $licensing.usageMetrics?.dayPasses $: dayPassesTitle = dayPassesUsed >= 100 ? "You have run out of Day Passes"