Max Cherniavskyi

Results 15 comments of Max Cherniavskyi

Page https://beta.reactjs.org/apis/react/useSyncExternalStore has a note, saying that: > Make sure that getServerSnapshot returns the same exact data on the initial client render as it returned on the server. For example,...

I've created an absolute minimal example that replicates the error and does not involve context or suspense: https://stackblitz.com/edit/nextjs-euctcq?file=app%2Fpage.js Basically, if there's anything that modifies the store state before any of...

Updated your example to use a vanilla store. https://stackblitz.com/edit/nextjs-f1ityy?file=app%2FContextProvider.js Before getServerState did not get assigned to `api` but to the hook. Now `theme` renders with the correct value the first...

Created an issue for next: https://github.com/vercel/next.js/issues/43920

I have disabled transform3d on the list element. This resolved it to me. ``` css .slick-slider .slick-list { transform: none; } ``` It's more of a hotfix, of course.