Skip to content

Commit

Permalink
fix(oidc): autorenew from custom fetch was broken (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Jul 20, 2024
1 parent f1d9da4 commit 2cf0b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oidc-client/src/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const fetchWithTokens =
const oidcToken : OidcToken = {

Check failure on line 22 in packages/oidc-client/src/fetch.ts

View workflow job for this annotation

GitHub Actions / Run linters

Delete `·`
tokens: oidc.tokens,
configuration: { token_automatic_renew_mode: oidc.configuration.token_automatic_renew_mode },
renewTokensAsync: oidc.renewTokensAsync,
renewTokensAsync: oidc.renewTokensAsync.bind(oidc),
}

Check failure on line 26 in packages/oidc-client/src/fetch.ts

View workflow job for this annotation

GitHub Actions / Run linters

Insert `;`

// @ts-ignore
Expand Down

0 comments on commit 2cf0b62

Please sign in to comment.