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 (