-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
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
Add support for new configs available on UserManager #673
Comments
Hey! Thanks for reporting this, and thanks for using You can use your own UserManager for this, let me give you an example: import React from 'react';
import { UserManager, AuthProvider } from 'oidc-react';
const userManager = new UserManager({
// ... set your config here
});
export const HelloComponent: React.FC = () => (
<AuthProvider userManager={userManager}>
{/* ... */}
</AuthProvider>
); Let me know if that works for you! 🚀 |
Thanks for reply This causes TS error And this |
Hello, could you please inform me if you are going to add that prop or not. Thanks |
This would be something I'd normally recommend you open an issue over at E.g. like this: |
Thank you very much! |
Hello,
oidc-client library added this one
And I really need it in my current project.
Could you please add it to the UserManager config
The text was updated successfully, but these errors were encountered: