INSR-9260: Fix missing sentence in drop off appointment time text

This commit is contained in:
Alex Humphries 2026-04-17 13:01:57 -04:00
parent b7733346fb
commit 6c7750c74a

View file

@ -341,7 +341,7 @@ export default {
appointmentTimeText() {
const { startTime, endTime } = this.schedule;
if (this.isDropOffAppointment) {
return 'Drop off before 9:30 AM';
return 'Drop off by 9:30 AM. Pick-up time dependent on shop schedule';
}
if (this.isInShopAppointment) {
const formattedStartTime = get12HourTimeFormat(startTime);