diff --git a/web/account/siwe-login-form.react.js b/web/account/siwe-login-form.react.js --- a/web/account/siwe-login-form.react.js +++ b/web/account/siwe-login-form.react.js @@ -174,7 +174,7 @@ siweSignature: string, ) => { try { - return await walletLogIn(walletAddress, siweMessage, siweSignature); + await walletLogIn(walletAddress, siweMessage, siweSignature); } catch (e) { const messageForException = getMessageForException(e); if (messageForException === 'user_not_found') { @@ -187,7 +187,6 @@ } else if (messageForException === 'retry_from_native') { setError('retry_from_native'); } - throw e; } }, [walletLogIn],