From ceca1fd1c79ef76c7fde371c13f2637226e0dea1 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Thu, 9 Oct 2025 14:49:08 -0400 Subject: [PATCH] CASH-1072: Revert offering PIA on $0 deductible with VAPS --- src/layouts/payment-method/payment-method.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 04ecc27f4..f9d765c32 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -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"; }