diff --git a/src/layouts/confirmation/confirmation.vue b/src/layouts/confirmation/confirmation.vue index f7cc1e748..a42e724f0 100644 --- a/src/layouts/confirmation/confirmation.vue +++ b/src/layouts/confirmation/confirmation.vue @@ -341,11 +341,17 @@ export default { return `Between ${get12HourTimeMobileFormat( this.ScheduleStartTime )} - ${get12HourTimeMobileFormat(this.ScheduleEndTime)}`; - } else if (this.AppointmentType == AppointmentTypeStrings.DROP_OFF) { - return `Drop off before 9:30 AM`; - } else { - return `at ${get12HourTimeFormat(this.ScheduleStartTime)}`; } + if (this.AppointmentType == AppointmentTypeStrings.DROP_OFF) { + if ( + this.submittedOrder?.schedule?.routeCode.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF) + ) { + return `Drop off before 5:30 PM`; + } else { + return `Drop off before 9:30 AM`; + } + } + return `at ${get12HourTimeFormat(this.ScheduleStartTime)}`; }, vehicleBannerImageUrl() { return this.submittedOrder?.vehicle.imageUrl;