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