CASH-474 - upon confirmation page refresh, updated the logic to add another donation

This commit is contained in:
Minojhini Valaiyapathi 2025-04-08 09:44:53 -04:00
parent 1b07bb1ebb
commit 5454d941a8

View file

@ -237,6 +237,9 @@ export default {
vm.shouldHideRecalibration = shouldHideRecalibration(); vm.shouldHideRecalibration = shouldHideRecalibration();
vm.shouldDisplayFosterLove = hasFosterLoveExperiment; vm.shouldDisplayFosterLove = hasFosterLoveExperiment;
vm.donationAmount = donationAmount; vm.donationAmount = donationAmount;
vm.showDonationSuccess = lineItemsFromSubmittedOrder.supportingItems?.some(
(item) => item.partType === partNumberStrings.DONATION
);
}); });
}, },
data() { data() {