-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat!: remove terra functionality from authprovider into its own provider (#178) #240
base: main
Are you sure you want to change the base?
Conversation
63c9231
to
dd975b7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SessionController required for populating the generic auth-related reducers with session from next-auth.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Terra profile is now separated from the now deleted authentication hook.
onClose: () => void; | ||
onDisableScrollLock: () => void; | ||
onEnableScrollLock: () => void; | ||
onOpen: (event: MouseEvent<HTMLElement>) => void; | ||
onToggleOpen: (event: MouseEvent<HTMLElement>) => void; | ||
onOpen: (event: MouseEvent<E>) => void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the useMenu hook to take a generic E
to support use by both Mui Popper and Menu.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New terra related provider!
Closes #178.