Etesam
Etesam
Is there a way to give access to the submenu of a menu item if it has one. For example, if I want to add a menu item to the...
This worked for my usecase! Thanks
Can you provide the code that you wrote which led to this error? This would be helpful for me in figuring out why this is happening.
So, this error appears when there is a fragment as a child of the MagicMotion. For example, this warning will show below: ```jsx import "./App.css"; import { MagicMotion } from...
Yeah, so whenever you get `Error: Invalid tag: [object Object]` that means that there is a problem with one of the children of the MagicMotion tag. You can try adding...
So in your example, the problematic component was the components from `@phosphor-icons/react`. The error can be fixed by add `key="exclude` to both the `` and `` components. Adding `key="exclude"` prevents...
Post your code so I can see what's going on
Add `key="exclude"` to the `LuLayoutList` tag ex: ```jsx ``` This tells the library to not animate this svg
I'll try to see if I can add some automatic detection of these errors and throw a nicer error message to the user.
It would be nice if you could post a reproducible example in a code sandbox or something like that.