We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98eda9d commit 7ddedfbCopy full SHA for 7ddedfb
packages/thirdweb/src/wallets/connection/autoConnectCore.ts
@@ -207,7 +207,9 @@ const _autoConnectCore = async ({
207
!props.siweAuth?.isLoggedIn &&
208
!props.siweAuth?.isLoggingIn
209
) {
210
- await props.siweAuth?.doLogin();
+ await props.siweAuth?.doLogin().catch((err) => {
211
+ console.warn("Error signing in with SIWE:", err.message);
212
+ });
213
}
214
manager.isAutoConnecting.setValue(false);
215
return autoConnected; // useQuery needs a return value
0 commit comments