Merge branch 'develop' into feature/INSR-7754

This commit is contained in:
Katie Kroell 2026-01-09 14:03:19 -05:00
commit f30415dedd

View file

@ -1352,10 +1352,11 @@ export const useMainStore = defineStore({
async setVehicle() {
const encodedMake = encodeURIComponent(this.order.vehicle.make);
const encodedModel = encodeURIComponent(this.order.vehicle.model);
const encodedStyle = encodeURIComponent(this.order.vehicle.style);
const response = await globalMethods
.callHttpClient({
method: endpoints.GetVehicle.method,
endpoint: `${endpoints.GetVehicle.url}/${this.order.vehicle.year}/${encodedMake}/${encodedModel}/${this.order.vehicle.style}`,
endpoint: `${endpoints.GetVehicle.url}/${this.order.vehicle.year}/${encodedMake}/${encodedModel}/${encodedStyle}`,
payload: {}
});
this.updateVehicle(response.data);