SSR-1064 small updates

This commit is contained in:
Matt Caimi 2024-02-12 13:39:11 -05:00
parent 608668fb9f
commit 53393721c6
2 changed files with 2 additions and 9 deletions

View file

@ -117,7 +117,7 @@ export default {
span {
&.small {
font-size: 0.75rem;
font-size: $font-size-xsm;
color: $gray-550;
}
}

View file

@ -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);
}
}