Skip to content

Commit 2d2ca32

Browse files
committed
Formatting
1 parent a75b407 commit 2d2ca32

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,11 @@ export class AuthImpl implements AuthInternal, _FirebaseService {
300300
// and also check that the project matches
301301
const user = userExtern as UserInternal | null;
302302
if (user) {
303-
_assert(user.auth.config.apiKey === this.config.apiKey, this, AuthErrorCode.INVALID_AUTH);
303+
_assert(
304+
user.auth.config.apiKey === this.config.apiKey,
305+
this,
306+
AuthErrorCode.INVALID_AUTH
307+
);
304308
}
305309
return this._updateCurrentUser(user && user._clone(this));
306310
}

0 commit comments

Comments
 (0)