diff --git a/src/experiment-components/date-picker-for-pricing-by-day.vue b/src/experiment-components/date-picker-for-pricing-by-day.vue index 45f6ac3fa..c94f10a17 100644 --- a/src/experiment-components/date-picker-for-pricing-by-day.vue +++ b/src/experiment-components/date-picker-for-pricing-by-day.vue @@ -72,7 +72,9 @@ :id="`${month.monthLabel}-${date.dateNum.toString()}`" /> @@ -1089,7 +1091,8 @@ export default { } } - &.pricing-by-day { // pricing by day override styles + &.pricing-by-day { + // pricing by day override styles .calendar-grid-container .grid-item { margin: 0; } diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index d5c05c93b..be7009a26 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -293,15 +293,16 @@ export default { ); // While Pricing By Day Experiment is ongoing, using the updated datePicker - const datePickerInitialDataPromise = await datePickerForPricingByDay.methods.loadInitialData({ - // setup config options for date-picker - selectableDatesSetting: "custom", - initialViewRowsToShow: 5, - customSelectableDatesCallback: getAvailableDates, - preSelectedDate: preSelectedDate, - baseDayPrice: baseDayPrice, - pricingByDayUpcharge: pricingByDayUpcharge, - }); + const datePickerInitialDataPromise = + await datePickerForPricingByDay.methods.loadInitialData({ + // setup config options for date-picker + selectableDatesSetting: "custom", + initialViewRowsToShow: 5, + customSelectableDatesCallback: getAvailableDates, + preSelectedDate: preSelectedDate, + baseDayPrice: baseDayPrice, + pricingByDayUpcharge: pricingByDayUpcharge, + }); const premiumFeePromise = baseMixin.methods.dispatchStoreActionWithLogging( storeActions.GET_MOBILE_PREMIUM_FEE,