diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index ae03d51fa..9ec9a833f 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -643,9 +643,16 @@ export default { } }, showPaymentMethodQuestions() { - if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) { - return true; + if (this.isInsurance) { + if (this.isPiaEnabled && this.totalAmountDue > 0) { + return true; + } + } else { + if (this.isPiaEnabled && this.totalAmountDue > 0 && !this.hasRecal) { + return true; + } } + return false; }, totalAmountDue() {