Merge pull request #2882 from Safelite/feature/CASH-1072_partialRevert

Feature/CASH-1072_partialRevert
This commit is contained in:
Chris 2025-10-09 15:03:12 -04:00 committed by GitHub
commit 4170e3e9c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -807,10 +807,7 @@ export default {
const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE);
if (this.isInsurance) {
return (
piaInsurance === "true" &&
(this.currentDeductible > 0 || +this.totalAmountDue > 0)
);
return piaInsurance === "true" && this.currentDeductible > 0;
} else {
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
}