Merge pull request #1353 from Safelite/feature/Digital/csr-1598.1

Update confirmation.vue
This commit is contained in:
hiteshkumar87 2023-09-21 19:29:53 +05:30 committed by GitHub
commit baaeeecede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
},