diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 67d7a2d3f..5d89c40c7 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -500,12 +500,7 @@ export default { async continueWithFailedVin(vin, zipCodeData) { var selectedVehicle = { vin: vin, - vehicle: { - carId: this.carId, - make: this.$store.getters.order.vehicle.make || null, - model: this.$store.getters.order.vehicle.model || null, - year: this.$store.getters.order.vehicle.year || null, - }, + vehicle: this.$store.getters.vehicle, }; await this.dispatchStoreAction( storeActions.SAVE_VIN,