Merge pull request #3199 from Safelite/nation/CASH-2753

CASH-2753 itac nocomp should work like cash
This commit is contained in:
CarlNation 2026-05-29 15:54:20 -04:00 committed by GitHub
commit 53995d7535
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View file

@ -1007,9 +1007,10 @@ export default {
return this.getCmsContent("RecycleTextBlock", "Text");
},
msrToolTipBodyText() {
let cmsContentText = this.isInsurance
? this.getCmsContent("MSRModal", "BodyText")
: this.getCmsContent("MSRModal", "BodyText2");
let cmsContentText =
this.isInsurance && !this.isItac && !this.isNoComp
? this.getCmsContent("MSRModal", "BodyText")
: this.getCmsContent("MSRModal", "BodyText2");
if (this.isInsurance && cmsContentText) {
cmsContentText = cmsContentText.replaceAll(
"{custom:mobileFee}",

View file

@ -736,6 +736,8 @@ export default {
this.isMobileStaticRecalibrationApplicable &&
this.mobileFeeHasPrice &&
this.isInsurance &&
!this.isITAC &&
!this.isNoComp &&
!this.mobileFeePart?.isInsurable
);
},