CASH-1221

formatting
This commit is contained in:
Johnny shultz 2025-07-22 13:01:59 -04:00
parent fd9265a269
commit 8636751b7d
3 changed files with 5 additions and 13 deletions

View file

@ -307,11 +307,7 @@ export default {
},
set(newSelectedDate) {
this.$emit("update:modelValue", newSelectedDate);
this.dispatchStoreAction(
this.storeActions.SAVE_WAITLIST_REQUESTED,
false,
false
);
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
},
},
dropOffDurationText() {

View file

@ -992,12 +992,8 @@ export default {
this.isVehicleProtected = null;
},
resetWaitlist(){
this.dispatchStoreAction(
this.storeActions.SAVE_WAITLIST_REQUESTED,
false,
false
);
resetWaitlist() {
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
this.waitListRequested = false;
},
setServiceabilityDetails(serviceabilityDetails) {

View file

@ -346,11 +346,11 @@ export default {
return this.getCmsContent("WaitListSuccessWidget", "BodyText");
},
waitListRequested: {
get(){
get() {
return this.$store.getters.order.customer?.waitListRequested;
},
set(value) {
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value)
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value);
},
},
isMobileAppointment() {