remove console logs

This commit is contained in:
Bill Richardson 2023-10-20 10:13:43 -04:00
parent 33108d1b46
commit f337c54ea8

View file

@ -1261,17 +1261,14 @@ export const useMainStore = defineStore({
this.order.vehicle.registration.lastName = null;
},
resetServiceLocationAndDependencies(context) {
console.log('Reset service location and dependencies...');
this.resetServiceLocationAppointmentType();
this.resetServiceLocationProvider();
this.resetSchedule();
},
resetServiceLocationAppointmentType() {
console.log('Reset service location appointment type...');
this.order.serviceLocation.appointmentType = null;
},
resetServiceLocationProvider() {
console.log('Reset service location provider...');
this.order.serviceLocation.provider = {
providerNumber: null,
address: {
@ -1284,7 +1281,6 @@ export const useMainStore = defineStore({
};
},
resetServiceLocationMobileAddress() {
console.log('Reset service location mobile address...');
this.order.serviceLocation.address = null;
this.order.serviceLocation.address2 = null;
this.order.serviceLocation.city = null;
@ -1359,7 +1355,6 @@ export const useMainStore = defineStore({
this.applicationUser.pageData[issPageValues.CAPABILITY_QUESTIONS] = null;
},
resetSchedule() {
console.log('Reset Schedule...');
this.order.schedule.date = null;
this.order.schedule.startTime = null;
this.order.schedule.endTime = null;