Remove duplicate entry.
This commit is contained in:
parent
710f242679
commit
71a5ccf0c1
1 changed files with 3 additions and 6 deletions
|
|
@ -141,9 +141,6 @@ export const mutations = {
|
||||||
updateRegistrationZipCode(state, registrationZipCode){
|
updateRegistrationZipCode(state, registrationZipCode){
|
||||||
state.order.vehicle.registration.zipCode = registrationZipCode;
|
state.order.vehicle.registration.zipCode = registrationZipCode;
|
||||||
},
|
},
|
||||||
updateRegistrationAddress(state, registrationAddress){
|
|
||||||
state.order.vehicle.registration.address = registrationAddress;
|
|
||||||
},
|
|
||||||
updateRegistrationAddress(state, reistrationAddress){
|
updateRegistrationAddress(state, reistrationAddress){
|
||||||
state.order.vehicle.registration.address = reistrationAddress;
|
state.order.vehicle.registration.address = reistrationAddress;
|
||||||
},
|
},
|
||||||
|
|
@ -306,13 +303,13 @@ export const actions = {
|
||||||
method: endpoints.LookupVinByAddress.method,
|
method: endpoints.LookupVinByAddress.method,
|
||||||
endpoint: endpoints.LookupVinByAddress.url,
|
endpoint: endpoints.LookupVinByAddress.url,
|
||||||
payload: {
|
payload: {
|
||||||
licenseLastName: licenseLastName,
|
licenseLastName: licenseLastName,
|
||||||
licenseStreetAddress: licenseStreetAddress,
|
licenseStreetAddress: licenseStreetAddress,
|
||||||
licenseZip: licenseZip,
|
licenseZip: licenseZip,
|
||||||
licenseState: licenseState
|
licenseState: licenseState
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getVehicleMakes(context, { year }) {
|
getVehicleMakes(context, { year }) {
|
||||||
return globalMethods.callHttpClient({
|
return globalMethods.callHttpClient({
|
||||||
method: endpoints.GetVehicleMakes.method,
|
method: endpoints.GetVehicleMakes.method,
|
||||||
|
|
@ -469,7 +466,7 @@ export const actions = {
|
||||||
payload: {}
|
payload: {}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// Parts API Actions
|
// Parts API Actions
|
||||||
getPartsOrQuestions(context, { carId, glassArray, zipCode, vin = '' }) {
|
getPartsOrQuestions(context, { carId, glassArray, zipCode, vin = '' }) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue