diff --git a/src/components/views/create/WalletAddressInput.tsx b/src/components/views/create/WalletAddressInput.tsx index 314bdaac48..66104b07e5 100644 --- a/src/components/views/create/WalletAddressInput.tsx +++ b/src/components/views/create/WalletAddressInput.tsx @@ -180,6 +180,7 @@ const WalletAddressInput: FC = ({ }, [sameAddress]); useEffect(() => { + //We had an issue with onBlur so when the user clicks on submit exactly after filling the address, then process of address validation began, so i changed it to this. addressValidation(inputValue).then(res => { if (res === true) { setError({ ...error, message: '' });