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);