diff --git a/frontend/src/app/features/calculator/services/quote-estimator.service.ts b/frontend/src/app/features/calculator/services/quote-estimator.service.ts index 9ec6d61..988cc7b 100644 --- a/frontend/src/app/features/calculator/services/quote-estimator.service.ts +++ b/frontend/src/app/features/calculator/services/quote-estimator.service.ts @@ -384,8 +384,9 @@ export class QuoteEstimatorService { ); const grandTotal = Number(sessionData?.grandTotalChf); - const effectiveSetupCost = - Number(sessionData?.setupCostChf ?? session?.setupCostChf ?? 0); + const effectiveSetupCost = Number( + sessionData?.setupCostChf ?? session?.setupCostChf ?? 0, + ); const fallbackTotal = Number(sessionData?.itemsTotalChf || 0) + effectiveSetupCost + diff --git a/frontend/src/app/features/checkout/checkout.component.html b/frontend/src/app/features/checkout/checkout.component.html index f95bec6..5cda654 100644 --- a/frontend/src/app/features/checkout/checkout.component.html +++ b/frontend/src/app/features/checkout/checkout.component.html @@ -331,11 +331,14 @@