Update src/layouts/address-lookup/address-lookup.vue

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
katiekroell 2026-03-10 13:15:35 -04:00 committed by GitHub
parent 5abf45db2f
commit 98e8881cd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -252,7 +252,8 @@ export default {
const carFound = carsFound[0].vehicle;
if (!carFound.canSafeliteService) {
return this.mainStore.setBailout(bailoutMessage.HeavyTruckVehicle(carFound.carId));
this.mainStore.setBailout(bailoutMessage.HeavyTruckVehicle(carFound.carId));
return this.$router.push({ name: 'bailout' });
}
this.isCarIdDifferent = carFound.carId !== useMainStore().order.vehicle.carId;