Merge pull request #382 from Safelite/BRM-fix-duplicate-entry
Remove duplicate entry.
This commit is contained in:
commit
dfa4af357b
1 changed files with 4 additions and 7 deletions
|
|
@ -141,11 +141,8 @@ export const mutations = {
|
|||
updateRegistrationZipCode(state, registrationZipCode){
|
||||
state.order.vehicle.registration.zipCode = registrationZipCode;
|
||||
},
|
||||
updateRegistrationAddress(state, registrationAddress){
|
||||
state.order.vehicle.registration.address = registrationAddress;
|
||||
},
|
||||
updateRegistrationAddress(state, reistrationAddress){
|
||||
state.order.vehicle.registration.address = reistrationAddress;
|
||||
state.order.vehicle.registration.address = registrationAddress;
|
||||
},
|
||||
updateServiceLocationZip(state, serviceLocationZip){
|
||||
state.order.serviceLocation.zip = serviceLocationZip;
|
||||
|
|
@ -306,13 +303,13 @@ export const actions = {
|
|||
method: endpoints.LookupVinByAddress.method,
|
||||
endpoint: endpoints.LookupVinByAddress.url,
|
||||
payload: {
|
||||
licenseLastName: licenseLastName,
|
||||
licenseLastName: licenseLastName,
|
||||
licenseStreetAddress: licenseStreetAddress,
|
||||
licenseZip: licenseZip,
|
||||
licenseState: licenseState
|
||||
},
|
||||
});
|
||||
},
|
||||
},
|
||||
getVehicleMakes(context, { year }) {
|
||||
return globalMethods.callHttpClient({
|
||||
method: endpoints.GetVehicleMakes.method,
|
||||
|
|
@ -469,7 +466,7 @@ export const actions = {
|
|||
payload: {}
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
|
||||
// Parts API Actions
|
||||
getPartsOrQuestions(context, { carId, glassArray, zipCode, vin = '' }) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue