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 5745e24 commit 626143eCopy full SHA for 626143e
packages-exp/auth-exp/src/core/errors.ts
@@ -349,7 +349,10 @@ function _debugErrorMap(): ErrorMap<AuthErrorCode> {
349
[AuthErrorCode.WEB_STORAGE_UNSUPPORTED]:
350
'This browser is not supported or 3rd party cookies and data may be disabled.',
351
[AuthErrorCode.ALREADY_INITIALIZED]:
352
- 'Auth can only be initialized once per app.'
+ 'initializeAuth() has already been called with ' +
353
+ 'different options. To avoid this error, call initializeAuth() with the ' +
354
+ 'same options as when it was originally called, or call getAuth() to return the' +
355
+ ' already initialized instance.'
356
};
357
}
358
0 commit comments