From ead9fc10af50d59ebe739909bd3995fb1971ddaa Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Tue, 22 Jul 2025 12:09:07 -0400 Subject: [PATCH] Don't over-update fields with wrong information. --- src/layouts/schedule/schedule.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index c3a533037..ec4a83d1d 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1182,10 +1182,13 @@ export default { this.$nextTick(() => { this.$refs.datePicker.showAnotherMonth().then((moreSelectableDates) => { // update all dates - this.selectableDatesInshop.days = - moreSelectableDates.inshopTimeSlotsData.days; - this.selectableDatesMobile.days = - moreSelectableDates.mobileTimeSlotsData.days; + + // > CHLOE HERD 7/22 -- CASH-1207 + // > Do not update the available dates again here; + // > they have already been updated by `showAnotherMonth`. + // > Doing so will likely add or remove dates, + // > desyncing the schedule page and the date-picker. + this.setDisplayWaitList(); }); });