CSR-1137 | Formatting

This commit is contained in:
Scott Kiener 2023-05-25 16:28:57 -04:00
parent 32a6b4d1bb
commit db48ca9fd0

View file

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