diff --git a/src/store/index.js b/src/store/index.js index 39a9d3266..035c4bcc0 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1945,7 +1945,7 @@ export const actions = { }, saveEmail(context, email) { - context.commit(storeMutations.UPDATE_CUSTOMER_EMAIL_ADDRESS, email); + context.commit(storeMutations.UPDATE_CUSTOMER_EMAIL_ADDRESS, email === "" ? null : email); }, saveVin(context, { isSelectedGlassAvailableForVehicle, vehicleInfo }) {