From 44821ce53614854cb64f576f8cd8e86e7f74f481 Mon Sep 17 00:00:00 2001 From: scottkiener-at-safelite Date: Thu, 28 May 2026 10:30:07 -0400 Subject: [PATCH] Formatting and remove a console log --- src/layouts/scheduling/date-picker/date-picker.vue | 1 - src/router/methods/route-logic/schedule.js | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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 {