Shane Hoban
Shane Hoban
This is an old issue but here is a kind of workaround that does the job for me: ````` [aria-label][role~="tooltip"]:not(:hover):focus::before, [aria-label][role~="tooltip"]:not(:hover):focus::after { opacity: 0; } `````
To follow up on this, I pulled in `vue-toaster` into my project src folder to add logs etc. and try debug -> now it works 🤷 So, not working from...
Related stack overflow question: https://stackoverflow.com/questions/71929957/meforma-vue-toaster-clear-function-only-works-when-pulled-into-local-project-fo Could this issue be related to using `vite`? Seems like it works with `vue cli`... not sure yet..
Adding stackblitz (vite) example here too: https://stackblitz.com/edit/vitejs-vite-uqcdgd?file=src%2Fmain.js,src%2FApp.vue
So after [forking @meforma/vue-toaster][1], rewriting the Toaster in the composition API and changing the event bus to use `mitt`, even went as far as to [publish it to npmjs][2] so...
This seems to be an issue with how Vite caches dependencies. [duannx](https://github.com/duannx) created an issue on Vite with this example: https://github.com/vitejs/vite/issues/8158 which was apparently a duplicate of a previous issue:...
If using a client component, you can also use the `router` via `useRouter()` to achieve this directly on the `TableRow`: ```` { router.push(`/your-url`) }} className="cursor-pointer" > ```` This doesn't provide...
I was getting this error when deployed on vercel, but not locally (even when using `vercel dev`). After importing `server-only`, the redirect error OP has is gone, but now the...
@Wigglor The solution above is specifically for NextJS based apps. If you are simply using react (not with NextJS) -> You should be able to follow the React docs here:...
@Wigglor it would be better for you to create a new issue if you have a problem instead of using this one as this one is specific to NextJS. I'm...