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 39cf683 commit 1ecea9bCopy full SHA for 1ecea9b
packages-exp/auth-exp/src/core/auth/register.ts
@@ -59,7 +59,11 @@ 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 && !apiKey.includes(':'), AuthErrorCode.INVALID_API_KEY, { appName: app.name });
+ _assert(
63
+ apiKey && !apiKey.includes(':'),
64
+ AuthErrorCode.INVALID_API_KEY,
65
+ { appName: app.name }
66
+ );
67
const config: ConfigInternal = {
68
apiKey,
69
authDomain,
0 commit comments