From db48ca9fd0eec51b72e81a4dd7311a85f0366e09 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Thu, 25 May 2023 16:28:57 -0400 Subject: [PATCH] CSR-1137 | Formatting --- src/layouts/schedule/schedule.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 5969dfa06..37bdc8622 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -96,7 +96,7 @@ const getAvailableDates = async (startDate, endDate, appointmentType, providerNu ); } else { newTimeSlotsResponse = await baseMixin.methods.dispatchStoreAction( - storeActions.GET_SHOP_TIME_SLOTS, + storeActions.GET_SHOP_TIME_SLOTS, { startDate: startDate, endDate: endDate, @@ -106,7 +106,7 @@ const getAvailableDates = async (startDate, endDate, appointmentType, providerNu false ); } - + const newShopTimeSlots = newTimeSlotsResponse.data; return convertApiResponse(newShopTimeSlots); };