diff --git a/src/helpers/service-location-helper.js b/src/helpers/service-location-helper.js index 2866366e..7e10ccd2 100644 --- a/src/helpers/service-location-helper.js +++ b/src/helpers/service-location-helper.js @@ -65,7 +65,7 @@ export async function getAvailabilityRating( shopTimeSlots.data.days.filter((x) => x.timeSlots.length > 0).length >= numberOfDaysToEvaluate; - const shopStatus = isGoodAvailability ? 'high' : 'lowww'; + const shopStatus = isGoodAvailability ? 'high' : 'low'; return Promise.resolve(shopStatus); } diff --git a/src/layouts/schedule-page/schedule-page.vue b/src/layouts/schedule-page/schedule-page.vue index 75357316..de6a2597 100644 --- a/src/layouts/schedule-page/schedule-page.vue +++ b/src/layouts/schedule-page/schedule-page.vue @@ -327,9 +327,6 @@ export default { appointmentType() { return useMainStore().order.serviceLocation.appointmentType; }, - daysToAdd() { - return this.isMobileView ? this.daysInViewMobile : this.daysInViewStandard; - }, hasNeededServiceLocationData() { const serviceLocationToUse = this.selectedServiceLocation; if (!serviceLocationToUse || !this.selectedAppointmentType) {