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 1ecea9b commit b35e476Copy full SHA for b35e476
packages-exp/auth-exp/src/core/auth/register.ts
@@ -64,6 +64,8 @@ export function registerAuth(clientPlatform: ClientPlatform): void {
64
AuthErrorCode.INVALID_API_KEY,
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});
69
const config: ConfigInternal = {
70
apiKey,
71
authDomain,
0 commit comments