Merge pull request #504 from Safelite/feature/SSR-669

fix vehicle.id
This commit is contained in:
katiekroell 2023-11-16 11:24:51 -05:00 committed by GitHub
commit ddd27d35f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -486,7 +486,7 @@ export const useMainStore = defineStore({
country: 'US' // TODO set from store
},
vehicle: {
id: this.order.vehicle.carId?.toString() ?? '',
id: this.order.vehicle.policyVehicleId?.toString() ?? '',
year: this.order.vehicle.year?.toString() ?? '',
make: this.order.vehicle.make,
model: this.order.vehicle.model,