Merge branch 'release/2025.10.09' into feature/Shultz/CASH-1514

This commit is contained in:
Johnny Shultz 2025-10-03 13:43:45 -04:00 committed by GitHub
commit 7a7902cae5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -807,7 +807,10 @@ export default {
const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE);
if (this.isInsurance) {
return piaInsurance === "true" && this.currentDeductible > 0;
return (
piaInsurance === "true" &&
(this.currentDeductible > 0 || +this.totalAmountDue > 0)
);
} else {
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
}
@ -839,6 +842,7 @@ export default {
return (
this.showInsuranceCoverageAs !== coverageStatus.PENDING &&
!this.isRecalPriceRemove &&
this.isPiaEnabled &&
this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true")
);
},