Hide the home unless you have it

This commit is contained in:
Owen
2026-04-13 11:16:26 -07:00
parent acc6a26654
commit 92332fb02f

View File

@@ -804,7 +804,7 @@ export default function BillingPage() {
<SettingsSectionBody> <SettingsSectionBody>
{/* Plan Cards Grid */} {/* Plan Cards Grid */}
<div className="grid grid-cols-1 md:grid-cols-5 gap-4"> <div className="grid grid-cols-1 md:grid-cols-5 gap-4">
{planOptions.map((plan) => { {planOptions.filter((plan) => plan.id !== "home" || currentPlanId === "home").map((plan) => {
const isCurrentPlan = plan.id === currentPlanId; const isCurrentPlan = plan.id === currentPlanId;
const planAction = getPlanAction(plan); const planAction = getPlanAction(plan);