remove unused computed
This commit is contained in:
parent
dcfccfd916
commit
a8d6e4fb58
2 changed files with 1 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue