From 92332fb02fc20b51c05c4ff9f452d50b14613371 Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 13 Apr 2026 11:16:26 -0700 Subject: [PATCH] Hide the home unless you have it --- src/app/[orgId]/settings/(private)/billing/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/[orgId]/settings/(private)/billing/page.tsx b/src/app/[orgId]/settings/(private)/billing/page.tsx index ba08f6022..8e125c536 100644 --- a/src/app/[orgId]/settings/(private)/billing/page.tsx +++ b/src/app/[orgId]/settings/(private)/billing/page.tsx @@ -804,7 +804,7 @@ export default function BillingPage() { {/* Plan Cards Grid */}
- {planOptions.map((plan) => { + {planOptions.filter((plan) => plan.id !== "home" || currentPlanId === "home").map((plan) => { const isCurrentPlan = plan.id === currentPlanId; const planAction = getPlanAction(plan);