We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
react-oidc-context/src/AuthProvider.tsx
Line 42 in 8f5d9b4
see no-invalid-void-type | typescript-eslint
I suggest using user: User | undefined or user?: User instead of user: User | void.
user: User | undefined
user?: User
user: User | void
The text was updated successfully, but these errors were encountered:
fixed via 3345125
Sorry, something went wrong.
fix(deps): update dependency react-oidc-context to v3.2.0 (#197)
a5276b9
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [react-oidc-context](https://github.com/authts/react-oidc-context) | dependencies | minor | [`3.1.1` -> `3.2.0`](https://renovatebot.com/diffs/npm/react-oidc-context/3.1.1/3.2.0) | --- ### Release Notes <details> <summary>authts/react-oidc-context (react-oidc-context)</summary> ### [`v3.2.0`](https://github.com/authts/react-oidc-context/releases/tag/v3.2.0) [Compare Source](authts/react-oidc-context@v3.1.1...v3.2.0) react-oidc-context 3.2.0 is a minor release. No longer using `crypto-js` package, but built-in browser [crypto.subtle](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/subtle) module. Crypto.subtle is available only in [secure contexts](https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts) (HTTPS). Also have a look into the [migration](https://github.com/authts/oidc-client-ts/blob/main/docs/migration.md) info. #### Changelog: - Fixes: - [#​1256](authts/react-oidc-context#1256): void is not valid as a constituent in a union - Features: - [#​1377](authts/react-oidc-context#1377): pass signoutCallback reponse to onSignoutCallback </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMTAuMiIsInVwZGF0ZWRJblZlciI6IjM4LjExMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Reviewed-on: https://git.tristess.app/alexandresoro/ouca/pulls/197 Reviewed-by: Alexandre Soro <[email protected]> Co-authored-by: renovate <[email protected]> Co-committed-by: renovate <[email protected]>
No branches or pull requests
react-oidc-context/src/AuthProvider.tsx
Line 42 in 8f5d9b4
see no-invalid-void-type | typescript-eslint
I suggest using
user: User | undefined
oruser?: User
instead ofuser: User | void
.The text was updated successfully, but these errors were encountered: