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 b35e476 commit a836d6fCopy full SHA for a836d6f
packages-exp/auth-exp/src/core/auth/register.ts
@@ -65,7 +65,9 @@ export function registerAuth(clientPlatform: ClientPlatform): void {
65
{ appName: app.name }
66
);
67
// Auth domain is optional if IdP sign in isn't being used
68
- _assert(!(authDomain?.includes(':')), AuthErrorCode.ARGUMENT_ERROR, {appName: app.name});
+ _assert(!authDomain?.includes(':'), AuthErrorCode.ARGUMENT_ERROR, {
69
+ appName: app.name
70
+ });
71
const config: ConfigInternal = {
72
apiKey,
73
authDomain,
0 commit comments