From 2e4bfaaab6aa48e91189e98f6c6714dfc7e66c7c Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Mon, 16 Mar 2026 10:28:02 -0400 Subject: [PATCH] bailout before choosing new glass --- src/layouts/vin-lookup/vin-lookup.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index e7470aca..0b9abfb7 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -182,7 +182,6 @@ export default { this.mainStore.setBailout(bailoutMessage.HeavyTruckVehicle(vehicleLookupResponse.data.carId)); this.resetVehicleFromLookup(); showIssLoadingModal(false); - return; } // Add vin bcs the response from the service doesn't contain vin @@ -226,6 +225,9 @@ export default { let isSelectedGlassAvailableForVehicle = true; if (this.isCarIdDifferentFromTheStore) { + if (this.mainStore.isBailout) { + return this.navigateForward(); + } isSelectedGlassAvailableForVehicle = await isGlassAvailableForCarId(this.vehicleFromLookup.carId); }