remove unused computed

This commit is contained in:
Bill Richardson 2026-01-27 14:14:35 -05:00
parent dcfccfd916
commit a8d6e4fb58
2 changed files with 1 additions and 4 deletions

View file

@ -65,7 +65,7 @@ export async function getAvailabilityRating(
shopTimeSlots.data.days.filter((x) => x.timeSlots.length > 0).length shopTimeSlots.data.days.filter((x) => x.timeSlots.length > 0).length
>= numberOfDaysToEvaluate; >= numberOfDaysToEvaluate;
const shopStatus = isGoodAvailability ? 'high' : 'lowww'; const shopStatus = isGoodAvailability ? 'high' : 'low';
return Promise.resolve(shopStatus); return Promise.resolve(shopStatus);
} }

View file

@ -327,9 +327,6 @@ export default {
appointmentType() { appointmentType() {
return useMainStore().order.serviceLocation.appointmentType; return useMainStore().order.serviceLocation.appointmentType;
}, },
daysToAdd() {
return this.isMobileView ? this.daysInViewMobile : this.daysInViewStandard;
},
hasNeededServiceLocationData() { hasNeededServiceLocationData() {
const serviceLocationToUse = this.selectedServiceLocation; const serviceLocationToUse = this.selectedServiceLocation;
if (!serviceLocationToUse || !this.selectedAppointmentType) { if (!serviceLocationToUse || !this.selectedAppointmentType) {