diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index fa26fe722..defa865d3 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -306,7 +306,7 @@ export default { storeActions.SAVE_SERVICE_LOCATION, { state: resultMap.serviceZipValidationResponse.state, - zipCode: this.serviceZipCode, + zipCode: this.serviceZipCode, zipCodeCtu: resultMap.serviceZipValidationResponse.zipCodeCtu, }, false diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index d29a0c4f5..93f9862d4 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -326,7 +326,7 @@ export default { storeActions.SAVE_SERVICE_ZIP_CODE_INFO, { state: resultMap.zipCodeData.state, - zipCode: this.serviceZipCode, + zipCode: this.serviceZipCode, zipCodeCtu: resultMap.zipCodeData.zipCodeCtu, }, false @@ -353,7 +353,7 @@ export default { address: vehicleRegistrationInfo.address, city: vehicleRegistrationInfo.city, state: vehicleRegistrationInfo.state, - zipCode: vehicleRegistrationInfo.zipCode, + zipCode: vehicleRegistrationInfo.zipCode, zipCodeCtu: zipCodeData.zipCodeCtu, }, false @@ -363,7 +363,7 @@ export default { storeActions.SAVE_SERVICE_ZIP_CODE_INFO, { state: zipCodeData.state, - zipCode: this.serviceZipCode, + zipCode: this.serviceZipCode, zipCodeCtu: zipCodeData.zipCodeCtu, }, false diff --git a/src/store/index.js b/src/store/index.js index 3a5b05b9f..83220bc3b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -259,10 +259,9 @@ export const mutations = { streetAddress: serviceLocationInfo.provider?.address?.streetAddress, city: serviceLocationInfo.provider?.address?.city, state: serviceLocationInfo.provider?.address?.state, - zip: serviceLocationInfo.provider?.address?.zip - } - } - + zip: serviceLocationInfo.provider?.address?.zip, + }, + }; }, updateSchedule(state, scheduleInfo) { if (scheduleInfo) { @@ -375,8 +374,8 @@ export const mutations = { streetAddress: null, city: null, state: null, - zip: null - } + zip: null, + }, }; }, resetServiceLocationMobileAddress(state) {