From f8256b6458a9f1dc3dd7235c742db79b89dcc071 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Wed, 6 Mar 2024 14:10:13 -0500 Subject: [PATCH] CSR-1754 prettier --- src/layouts/payment-method/payment-method.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 6bd4e8a6a..6d233a797 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -514,7 +514,10 @@ export default { const piaExperience = this.getSettingValue(experimentSettings.PIA_EXPERIENCE); const piaInsurance = this.getSettingValue(experimentSettings.PIA_INSURANCE); - const isEnabled = piaExperience === "PIA Optional" || piaExperience === "PIA Required" || piaInsurance === "true"; + const isEnabled = + piaExperience === "PIA Optional" || + piaExperience === "PIA Required" || + piaInsurance === "true"; return !isEnabled; },