-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
HeaderLinks.jsx: Define and upgrade react-popper dependency. #38
Labels
Comments
Hello again @W1M0R , We are going to address this is on our next update. Best, |
For your interest, Material-UI may have the same issues: mui/material-ui#11862 And this is what I had to do to make it work with the latest
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
HeaderLinks.jsx has a dependency on react-popper, that is not listed in package.json. It could be included as a part of Material-UI, but I'm not sure which version that would be.
Please add react-popper and popper.js to package.json. Also notice, that if you use the latest version of react-popper, then the API has changed, so you will have to replace the
<Target>
component with the<Reference>
component.If you don't explicitly depend on react-popper, but rather on the one (potentially) bundled with the latest Material-UI, then an npm install loads the new version of react-popper used by Material-UI, and breaks HeaderLinks.jsx because of the new react-popper API.
The text was updated successfully, but these errors were encountered: