Skip to content

Commit

Permalink
fix(react-oidc): missing console.log in useOidcFetch (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Jan 16, 2024
1 parent 117de93 commit c56cc84
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/react-oidc/src/FetchToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export const useOidcFetch = (fetch: Fetch = null, configurationName = defaultCon
(input: RequestInfo | URL, init?: RequestInit) => {
const getOidcWithConfigurationName = () => getOidc(configurationName);
const newFetch = fetchWithToken(previousFetch, getOidcWithConfigurationName);
console.log('newFetch', input)
return newFetch(input, init);
},
[previousFetch, configurationName],
Expand Down

0 comments on commit c56cc84

Please sign in to comment.