diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index b9d192ced..a3579318d 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -305,13 +305,13 @@ export default { await this.dispatchStoreAction( storeActions.SAVE_SERVICE_LOCATION, { - address: null, - address2: null, - city: null, + address: "", + address2: "", + city: "", state: resultMap.serviceZipValidationResponse.state, zipCode: this.serviceZipCode, zipCodeCtu: resultMap.serviceZipValidationResponse.zipCodeCtu, - appointmentType: null, + appointmentType: "", isVehicleProtected: null, }, false diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 48be463c7..b44f1c64c 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -361,9 +361,9 @@ export default { return store.getters.order.serviceLocation.provider; }, resetMobileLocation() { - this.streetAddress = null; - this.apartmentNumberOrBusinessName = null; - this.city = null; + this.streetAddress = ""; + this.apartmentNumberOrBusinessName = ""; + this.city = ""; this.isVehicleProtected = null; }, diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index d66275130..c1f2dd7ec 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -325,13 +325,13 @@ export default { await this.dispatchStoreAction( storeActions.SAVE_SERVICE_ZIP_CODE_INFO, { - address: null, - address2: null, - city: null, + address: "", + address2: "", + city: "", state: resultMap.zipCodeData.state, zipCode: this.serviceZipCode, zipCodeCtu: resultMap.zipCodeData.zipCodeCtu, - appointmentType: null, + appointmentType: "", isVehicleProtected: null, }, false