Merge pull request #3137 from Safelite/feature/CASH-1684

CASH-1684: Defect fix
This commit is contained in:
Chris 2026-04-09 13:29:04 -04:00 committed by GitHub
commit 0446f213c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -705,11 +705,9 @@ export default {
},
isMobileStaticRecalibrationApplicable() {
return (
(this.displayMSR &&
this.mobileFeePart?.partNumber == partNumberStrings.MOBILE_STATIC_RECAL_FEE &&
this.enableMSRSplitPay) ||
this.isCashItacNoComp ||
this.mobileFeePart?.isInsurable
this.displayMSR &&
this.mobileFeePart?.partNumber == partNumberStrings.MOBILE_STATIC_RECAL_FEE &&
(this.enableMSRSplitPay || this.isCashItacNoComp || this.mobileFeePart?.isInsurable)
);
},
displayMSR() {