Merge pull request #1191 from Safelite/feature/humphries/INSR-9260

INSR-9260: Fix missing sentence in drop off appointment time text
This commit is contained in:
AHumphriesSL 2026-04-17 14:18:14 -04:00 committed by GitHub
commit 4f6fb62909
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View file

@ -5,6 +5,11 @@ Object {
"CANCEL_CLAIM_REF_NAME": "CancelClaimModal",
"OEM_ENDORSEMENT_REF_NAME": "OEMModal",
"RECAL_MODAL_REF_NAME": "RecalModal",
"abortController": AbortController {
Symbol(SameObject caches): Object {
"signal": AbortSignal {},
},
},
"baseServiceLineItems": Array [],
"isPageLoading": true,
"widget": Object {

View file

@ -441,7 +441,7 @@ describe('OrderConfirmation.vue', () => {
const testValue = wrapper.vm.appointmentTimeText;
// Assert
expect(testValue).toEqual('Drop off before 9:30 AM');
expect(testValue).toEqual('Drop off by 9:30 AM. Pick-up time dependent on shop schedule');
});
test.each([
['Your appointment is at 9:00 AM', '09:00', '10:00'],

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);