diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index d4072486c..6df2c827b 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -283,7 +283,7 @@ export default { } } else if (carsFound.length > 1) { // if multiple cars were found - if (carsFound.find(car => car.carId === carEntered.carId)) { + if (carsFound.find(car => car.vehicle.carId === carEntered.carId)) { // and one of them matches the car id entered this.$refs.loadingModal.showModal(); navigateAfterSaveToHeritageFunnel(this.$route);