diff --git a/packages/react-oidc/src/FetchToken.tsx b/packages/react-oidc/src/FetchToken.tsx index ca59e3240..af94a512f 100644 --- a/packages/react-oidc/src/FetchToken.tsx +++ b/packages/react-oidc/src/FetchToken.tsx @@ -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],