diff --git a/src/pages/authentication/auth-forms/IAmSmartFormWizard.js b/src/pages/authentication/auth-forms/IAmSmartFormWizard.js index ad0f14e..7fcf174 100644 --- a/src/pages/authentication/auth-forms/IAmSmartFormWizard.js +++ b/src/pages/authentication/auth-forms/IAmSmartFormWizard.js @@ -142,7 +142,7 @@ const CustomFormWizard = (props) => { const getAddressStr = (strs) => { let add = "" strs.forEach(str => { - add += str ? str + ", " : ""; + add += str.trim() ? str.trim() + ", " : ""; }); add = add.trim(); if (add.slice(- 1) == ",") {