diff --git a/src/layouts/scheduling/date-picker/date-picker.vue b/src/layouts/scheduling/date-picker/date-picker.vue index c9c0ad81a..f073373b6 100644 --- a/src/layouts/scheduling/date-picker/date-picker.vue +++ b/src/layouts/scheduling/date-picker/date-picker.vue @@ -178,7 +178,6 @@ export default { }, goForward() { if (this.isLoadingDates) return; - console.log("goForward", this.windowStart, this.windowSize, this.allDates.length); const isAtEnd = this.windowStart + this.windowSize >= this.allDates.length; if (isAtEnd) { this.$emit("requestMoreDates"); diff --git a/src/router/methods/route-logic/schedule.js b/src/router/methods/route-logic/schedule.js index 5bd7d8c0d..1ac83312f 100644 --- a/src/router/methods/route-logic/schedule.js +++ b/src/router/methods/route-logic/schedule.js @@ -3,8 +3,10 @@ import { experimentSettings } from "@/constants/experiments"; import { routeData } from "@/router/constants/routes"; export async function scheduleBeforeEnter(to, from) { - const isSchedulingEnabled = - experimentMixin.methods.hasSettingEqualTo(experimentSettings.USE_SCHEDULING_PAGE, "true"); + const isSchedulingEnabled = experimentMixin.methods.hasSettingEqualTo( + experimentSettings.USE_SCHEDULING_PAGE, + "true" + ); if (isSchedulingEnabled) { return {