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 a4b794b commit 39cf683Copy full SHA for 39cf683
packages-exp/auth-exp/src/core/auth/register.ts
@@ -59,7 +59,7 @@ export function registerAuth(clientPlatform: ClientPlatform): void {
59
const app = container.getProvider('app-exp').getImmediate()!;
60
const { apiKey, authDomain } = app.options;
61
return (app => {
62
- _assert(apiKey, AuthErrorCode.INVALID_API_KEY, { appName: app.name });
+ _assert(apiKey && !apiKey.includes(':'), AuthErrorCode.INVALID_API_KEY, { appName: app.name });
63
const config: ConfigInternal = {
64
apiKey,
65
authDomain,
0 commit comments