Žan Žlender
Žan Žlender
Same thing happening to me with React, although I thought it might be because of Concurrent rendering released in React 18.0+. Also. I have a question maybe related to this......
Double render is fixed by making small changes to the example in README. => wrap InitEditor in use callback ```Javascript const isInstance = useRef(null) const initEditor = useCallback(() => {...
@bahlo Sorry forgot to mention that I'm self hosting.
I think it would also be nice to add this [Complex init tips](https://init.tips/others) and make it more obvious (and on the same domain?). The first time I read it I...
I don't know if this has been resolved yet, but if anyone still has problems with it, I found that replacing the redirect url given in the documentation using Next...
And another little addition, in the statement **request.nextUrl.local === "default"**, shouldn't it be **!==**. Because you would want to change the url only if the locale it **isn't** a default...
I've been playing a little bit with this... And I've succeeded only by changing the CSS a little bit... Although this was tried out in a browser so I don't...
Another update. After some digging I found out you COULD style a shadow DOM element, however that element needs to have an exposed attribute ```part``` like in [this example](https://css-tricks.com/styling-in-the-shadow-dom-with-css-shadow-parts/). If...
@arnog will try to think about it :) However, I would say although it may have some broken use cases for me it's better to have it like that than...
Ok, I just realized this was due to me/NextJS... Since I was just running `drizzle-kit push:mysql` it didn't load env variable.... When replacing that with the actual string it works...