Савелий Сидоров
Савелий Сидоров
I see, sorry for the confusion then. In my case, I'm using a toast library called `somoto` which happens to `delegateEvents` (including mousemove) on import. The import happens right at...
> Yeah it's tricky with mouse events. Especially since they are coming from the library and you don't have control over them. Could you mount the toast component after hydration?...
Right now what I ended up doing is just: ```ts // entry-client.tsx import { sharedConfig } from "solid-js" function hookDoneFor(obj: any) { Object.defineProperty(obj, "done", { get: () => false, set:...