From a0435780715a14e2d1f4410fbbd298cd77e07992 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Tue, 28 Apr 2026 11:42:46 -0400 Subject: [PATCH] CASH-2599: Pass isMSRFeeCoveredByInsurance to cart from Adyen page --- src/layouts/payment-adyen/payment-adyen.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/layouts/payment-adyen/payment-adyen.vue b/src/layouts/payment-adyen/payment-adyen.vue index 4297eb317..fc3ad668d 100644 --- a/src/layouts/payment-adyen/payment-adyen.vue +++ b/src/layouts/payment-adyen/payment-adyen.vue @@ -35,6 +35,7 @@ :insuranceCompanyName="insuranceCompanyName" :showInsuranceCoverageAs="showInsuranceCoverageAs" :isMSRFeeApplicable="isMSRFeeApplicable" + :IsMSRFeeCoveredByInsurance="isMSRFeeCoveredByInsurance" :isItac="isItac" :isNoComp="isNoComp" :isCollapsible="false" /> @@ -591,6 +592,9 @@ export default { isMSRFeeApplicable() { return this.$store.getters.order.isMSRFeeApplicable; }, + isMSRFeeCoveredByInsurance() { + return this.$store.getters.order.isMSRFeeCoveredByInsurance; + }, lineItems() { return deepClone(this.$store.getters.lineItems); },