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;