From 3cf35f24211013aa2b98701f906dba4ec29ee800 Mon Sep 17 00:00:00 2001 From: Carl Nation Date: Fri, 29 May 2026 07:18:23 -0400 Subject: [PATCH] CASH-2804 show advanced MSR mobile fee for itac and nocomp CASH-2804 show advanced MSR mobile fee for itac and nocomp --- src/fmg-components/cart/cart.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index faa28376d..fa58cb57f 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -907,7 +907,7 @@ export default { return cartItem; }, isCashItacNoComp() { - return !this.isInsurance || this.isITAC || this.isNoComp; + return !this.isInsurance || this.isItac || this.isNoComp; }, mobileFeeCartItemName() { return this.getCmsContent("MobileServiceTextWidget", "Text"); @@ -971,7 +971,7 @@ export default { const msrFeeLineItem = this.getMsrFeeLineItem; const shouldCreateMsrFeeCartItem = this.isMSRFeeApplicable && - (!this.isInsurance || !this.IsMSRFeeCoveredByInsurance) && + (this.isCashItacNoComp || !this.IsMSRFeeCoveredByInsurance) && msrFeeLineItem && this.msrFeeAmount > 0;