Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Nov 8, 2024
1 parent 0986096 commit 14d2912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-oidc/src/FetchToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const withOidcFetch =
const { fetch: newFetch } = useOidcFetch(
fetch || props.fetch,
configurationName,
demonstratingProofOfPossession,
demonstratingProofOfPossession,
);
return <WrappedComponent {...props} fetch={newFetch} />;
};
Expand All @@ -49,7 +49,7 @@ export const useOidcFetch = (
const newFetch = fetchWithToken(
previousFetch,
getOidcWithConfigurationName,
demonstratingProofOfPossession,
demonstratingProofOfPossession,
);
return newFetch(input, init);
},
Expand Down

0 comments on commit 14d2912

Please sign in to comment.