From 5433dbb029646b702c9ec4f4a47c239f70d2b20e Mon Sep 17 00:00:00 2001 From: Moritz Date: Mon, 9 Mar 2026 11:00:22 +0100 Subject: [PATCH] feat: rename private plan metadata key --- .../src/pages/subscriptions/SwitchPlanModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-zuplo-monetization/src/pages/subscriptions/SwitchPlanModal.tsx b/packages/plugin-zuplo-monetization/src/pages/subscriptions/SwitchPlanModal.tsx index c6fb408a9..58da7309b 100644 --- a/packages/plugin-zuplo-monetization/src/pages/subscriptions/SwitchPlanModal.tsx +++ b/packages/plugin-zuplo-monetization/src/pages/subscriptions/SwitchPlanModal.tsx @@ -445,7 +445,7 @@ export const SwitchPlanModal = ({ } const isPrivatePlan = (plan: Plan) => - plan.metadata?.zuplo_is_private === "true"; + plan.metadata?.zuplo_private_plan === "true"; const allComparisons = plansData.items .filter((p) => p.id !== currentPlan.id)