Skip to content

Commit 1ecea9b

Browse files
committed
Formatting
1 parent 39cf683 commit 1ecea9b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages-exp/auth-exp/src/core/auth/register.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ export function registerAuth(clientPlatform: ClientPlatform): void {
5959
const app = container.getProvider('app-exp').getImmediate()!;
6060
const { apiKey, authDomain } = app.options;
6161
return (app => {
62-
_assert(apiKey && !apiKey.includes(':'), AuthErrorCode.INVALID_API_KEY, { appName: app.name });
62+
_assert(
63+
apiKey && !apiKey.includes(':'),
64+
AuthErrorCode.INVALID_API_KEY,
65+
{ appName: app.name }
66+
);
6367
const config: ConfigInternal = {
6468
apiKey,
6569
authDomain,

0 commit comments

Comments
 (0)