From 53393721c67927536023c411af705828411324c9 Mon Sep 17 00:00:00 2001 From: Matt Caimi Date: Mon, 12 Feb 2024 13:39:11 -0500 Subject: [PATCH] SSR-1064 small updates --- .../payment-method-list-button.vue | 2 +- src/layouts/payment-method/payment-method.vue | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/src/layouts/payment-method/payment-method-question/payment-method-list-button/payment-method-list-button.vue b/src/layouts/payment-method/payment-method-question/payment-method-list-button/payment-method-list-button.vue index 871f8ba7..0f834cbc 100644 --- a/src/layouts/payment-method/payment-method-question/payment-method-list-button/payment-method-list-button.vue +++ b/src/layouts/payment-method/payment-method-question/payment-method-list-button/payment-method-list-button.vue @@ -117,7 +117,7 @@ export default { span { &.small { - font-size: 0.75rem; + font-size: $font-size-xsm; color: $gray-550; } } diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 57e425f3..10ebc609 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -53,14 +53,10 @@ import { useMainStore } from '@/store'; import { fetchCmsContentForPage } from '@/helpers/cms-content-helper'; import paymentMethods from '@/constants/payment-method-constants'; import globalRules from '@/constants/global-rules'; -import { Form, defineRule } from 'vee-validate'; +import { Form } from 'vee-validate'; -import { required } from '@/helpers/validation-rules'; -import errorMessages from '@/constants/error-messages'; import { AppointmentTypeStrings } from '@/constants/schedule-constants'; -defineRule(globalRules.OPTION_REQUIRED, required(errorMessages.OPTION_REQUIRED)); - export default { name: 'payment-method', components: { @@ -210,9 +206,6 @@ export default { this.$refs.siteFooter.updateButtonText(newValue); }, async forwardButtonAction() { - // Multiple paths based on payment - console.log('forward button hit...'); - await useMainStore().savePaymentMethodChoice(this.paymentMethod); } }