From f8a8cdaa5f20495209db45305fc110ff435199be Mon Sep 17 00:00:00 2001 From: Owen Date: Wed, 25 Feb 2026 16:45:35 -0800 Subject: [PATCH] Show enterprise tier --- src/app/[orgId]/settings/(private)/billing/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/[orgId]/settings/(private)/billing/page.tsx b/src/app/[orgId]/settings/(private)/billing/page.tsx index 24fa7480..35b95065 100644 --- a/src/app/[orgId]/settings/(private)/billing/page.tsx +++ b/src/app/[orgId]/settings/(private)/billing/page.tsx @@ -210,7 +210,8 @@ export default function BillingPage() { ({ subscription }) => subscription?.type === "tier1" || subscription?.type === "tier2" || - subscription?.type === "tier3" + subscription?.type === "tier3" || + subscription?.type === "enterprise" ); setTierSubscription(tierSub || null); @@ -439,6 +440,8 @@ export default function BillingPage() { // Get current plan ID from tier const getCurrentPlanId = (): PlanId => { if (!hasSubscription || !currentTier) return "basic"; + // Handle enterprise subscription type directly + if (currentTier === "enterprise") return "enterprise"; const plan = planOptions.find((p) => p.tierType === currentTier); return plan?.id || "basic"; };