From 71a5ccf0c1d3c9f8474aebad2bb275711b1f40f7 Mon Sep 17 00:00:00 2001 From: bmauger Date: Mon, 2 May 2022 16:39:28 -0400 Subject: [PATCH 1/2] Remove duplicate entry. --- src/store/index.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index cf4ed40b6..7f963289d 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -141,9 +141,6 @@ 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; }, @@ -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 = '' }) { From ca638bf040b9ba18e6fea0259d7def8f5eea508a Mon Sep 17 00:00:00 2001 From: bmauger Date: Mon, 2 May 2022 16:56:36 -0400 Subject: [PATCH 2/2] Fix typo. --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 7f963289d..d75e30fc6 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -142,7 +142,7 @@ export const mutations = { state.order.vehicle.registration.zipCode = registrationZipCode; }, updateRegistrationAddress(state, reistrationAddress){ - state.order.vehicle.registration.address = reistrationAddress; + state.order.vehicle.registration.address = registrationAddress; }, updateServiceLocationZip(state, serviceLocationZip){ state.order.serviceLocation.zip = serviceLocationZip;