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 0fe86c3 commit d45bdd1Copy full SHA for d45bdd1
src/Web3Auth.ts
@@ -326,12 +326,8 @@ class Web3Auth implements IWeb3Auth {
326
baseURL: url,
327
hash: { b64Params: jsonToBase64(configParams) },
328
});
329
- // eslint-disable-next-line no-console
330
- console.log(loginUrl);
331
332
const result = await this.webBrowser.openAuthSessionAsync(loginUrl, this.options.redirectUrl);
333
334
- console.log(result, "result");
335
if (result.type !== "success" || !result.url) {
336
log.error(`[Web3Auth] login flow failed with error type ${result.type}`);
337
throw LoginError.loginFailed(`login flow failed with error type ${result.type}`);
0 commit comments