From 169afb6538f3dee643774929b6b4df535da7a501 Mon Sep 17 00:00:00 2001 From: DanielS Date: Thu, 6 Aug 2026 17:52:07 +0200 Subject: [PATCH] fix(wizard): resolve type error on monthly_price --- shop/components/wizard/step-summary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shop/components/wizard/step-summary.tsx b/shop/components/wizard/step-summary.tsx index 02aa706..b7e5f9c 100644 --- a/shop/components/wizard/step-summary.tsx +++ b/shop/components/wizard/step-summary.tsx @@ -190,7 +190,7 @@ export function StepSummary({ {sortedProds.map((prod, idx) => { const isFree = idx < freeLimit const isAbo = item.billingInterval === 'monthly' - const displayPrice = isFree ? 0 : (isAbo ? (prod.monthly_price ?? prod.base_price) : prod.base_price) + const displayPrice = isFree ? 0 : (isAbo ? ((prod as any).monthly_price ?? prod.base_price) : prod.base_price) return (