Update confirmation.vue

removing schedule.endTime  for testing
This commit is contained in:
hiteshkumar87 2023-09-21 19:22:10 +05:30
parent a09c88e065
commit 58444e5895

View file

@ -73,7 +73,7 @@ export default {
// Schedule
const schedule = store.getters.order.schedule;
const scheduleReqs = !!(schedule.date && schedule.startTime && schedule.endTime);
const scheduleReqs = !!(schedule.date && schedule.startTime);//removing schedule.endTime for testing
return serviceLocationReqs && scheduleReqs;
},