CASH-1072: Revert offering PIA on $0 deductible with VAPS

This commit is contained in:
Chris Redelinghuys 2025-10-09 14:49:08 -04:00
parent 850f3716b0
commit ceca1fd1c7

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";
}