Skip to content

Commit e3e9adb

Browse files
committed
Formatting
1 parent cbb1a37 commit e3e9adb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages-exp/auth-exp/src/core/strategies/custom_token.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ export async function signInWithCustomToken(
3030
const response: IdTokenResponse = await getIdTokenResponse(auth, {
3131
token: customToken
3232
});
33-
const cred = await UserCredentialImpl._fromIdTokenResponse(auth, null, externs.OperationType.SIGN_IN, response);
33+
const cred = await UserCredentialImpl._fromIdTokenResponse(
34+
auth,
35+
null,
36+
externs.OperationType.SIGN_IN,
37+
response
38+
);
3439
await auth.updateCurrentUser(cred.user);
3540
return cred;
3641
}

0 commit comments

Comments
 (0)