From 7e9f7d83c017e64c060b93c4d7aa0014b0b6ec75 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 29 Feb 2024 15:06:39 -0500 Subject: [PATCH] Simplifying 2 --- src/layouts/payment-method/payment-method.vue | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index a57577f1..efdbb703 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -140,16 +140,10 @@ export default { return this.getCmsContent(this.widget.amountDue, widgetFields.TEXT_BLOCK_WIDGET.TEXT); }, deductibleLabel() { - return this.getCmsContent( - this.widget.deductible, - widgetFields.TEXT_BLOCK_WIDGET.TEXT - ); + return this.getCmsContent(this.widget.deductible, widgetFields.TEXT_BLOCK_WIDGET.TEXT); }, basePriceLabel() { - return this.getCmsContent( - this.widget.basePrice, - widgetFields.TEXT_BLOCK_WIDGET.TEXT - ); + return this.getCmsContent(this.widget.basePrice, widgetFields.TEXT_BLOCK_WIDGET.TEXT); } }, watch: {