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
"dependencies": { "@headlessui/react": "^1.5.0", "@heroicons/react": "^1.0.6", "react": "^18.0.0", "react-dom": "^18.0.0", "react-icons": "^4.3.1", "react-router-dom": "^6.3.0" }, "devDependencies": { "@vitejs/plugin-react": "^1.3.0", "autoprefixer": "^10.4.4", "postcss": "^8.4.12", "tailwindcss": "^3.0.24", "vite": "^2.9.2" }
There is a bug when using modals from tailwindui or headlessui, the modals or slidesovers are not executed at all.
Solution to the error, when creating a project with Vite the structure of the main is the following:
import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App"; ReactDOM.createRoot(document.getElementById("root")).render( <React.StrictMode> <App /> </React.StrictMode> );
It is solved by changing the structure of the main.
import React from "react"; import ReactDOM from "react-dom"; import App from "./App"; ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById("root") );
The text was updated successfully, but these errors were encountered:
Hey! Thank you for your bug report! Much appreciated! 🙏
This is a React 18 related issue. Checkout #681 for more information.
Sorry, something went wrong.
No branches or pull requests
There is a bug when using modals from tailwindui or headlessui, the modals or slidesovers are not executed at all.
Solution to the error, when creating a project with Vite the structure of the main is the following:
It is solved by changing the structure of the main.
The text was updated successfully, but these errors were encountered: