Skip to content

Commit

Permalink
fix (alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Nov 17, 2023
1 parent 8d16eb2 commit 004b0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oidc-client/src/oidc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export type InternalLoginCallback = {

const loginCallbackWithAutoTokensRenewAsync = async (oidc) : Promise<LoginCallback> => {
const { parsedTokens, callbackPath } = await oidc.loginCallbackAsync();
oidc.timeoutId = autoRenewTokens(oidc, parsedTokens.refreshToken, parsedTokens.expiresAt);
oidc.timeoutId = autoRenewTokens(oidc, parsedTokens.refreshToken, parsedTokens.expiresAt);
return { callbackPath };
};

Expand Down

0 comments on commit 004b0e2

Please sign in to comment.