From 1267486308d0ef0da5c2e4c2caaf3126c8913c60 Mon Sep 17 00:00:00 2001 From: Matt Caimi <77124353+MattCaimiSL@users.noreply.github.com> Date: Thu, 26 Jun 2025 15:01:51 -0400 Subject: [PATCH] Merge pull request #2609 from Safelite/feature/CASH-926 CASH-926 amount due correction --- src/helpers/pricing-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/pricing-helper.js b/src/helpers/pricing-helper.js index 33311fd21..9aa317353 100644 --- a/src/helpers/pricing-helper.js +++ b/src/helpers/pricing-helper.js @@ -67,7 +67,7 @@ export function getAmountDueWithDonation(lineItemsObject, donationLineItem) { // this is amount due with Donation added const lineItemsCloneWithDonation = deepClone(lineItemsObject); lineItemsCloneWithDonation.supportingItems.push(donationLineItem); - return getAmountDue(lineItemsCloneWithDonation, false); + return getAmountDue(lineItemsCloneWithDonation); } export async function getPricingByDayPartWithPrice(pageNameToLog) {