After building my site with some updates (serving with Flask, in case it could be relevant) I'm getting this error Error: Minified React error #130; visit https://reactjs.org/docs/error-decoder.html?invariant=130&args[]=object&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings. Which decodes to ```js
Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.
Been googling and searching on the server for quite some time now, and the info I've found were mostly (un)named imports/exports on StackOverflow, but doesn't seem to be my case
Guessing these lines could be the issue: ```js
className={ `${active && "bg-palette-select text-white" } block w-full text-left px-4 py-2 text-sm cursor-pointer` }
``` But I adapted the code from a very recent repo which works, and can't spot any relevant difference 🤔
Code: <https://github.com/elpekenin/astro-web/>(`NavMenu.jsx` is the component)