From ff4533cd4396a0c7208ec52f726a622f0560a10e Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Tue, 17 Sep 2024 13:44:36 -0400 Subject: [PATCH] CSR-2179: update conditions to show PIA on payment method --- src/layouts/payment-method/payment-method.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 85fb84a63..ff7e6a8d8 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -666,7 +666,7 @@ export default { return true; } } else { - if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.isRecalibrationOnOrder) { + if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.shouldHideRecalibration) { return true; } }