You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: useLayoutEffect does nothing on the server, because its effect cannot be encoded into the server renderer's output format. This will lead to a mismatch between the initial, non-hydrated UI and the intended UI. To avoid this, useLayoutEffect should only be used in components that render exclusively on the client. See https://reactjs.org/link/uselayouteffect-ssr for common fixes.
But with the "@rtk-incubator/rtk-query": "^0.3.0" it doesn't happens.
This warning is unfortunately React being over-zealous. It warns you about any use of useLayoutEffect in a server environment, to try to let you know that the effect won't actually get run:
We do appear to have one use of useLayoutEffect in this codebase. We'll have to see if we can tweak it to use React-Redux's useIsomorphicLayoutEffect instead, to avoid this issue.
Hi, with NextJs I have this warning
But with the "@rtk-incubator/rtk-query": "^0.3.0" it doesn't happens.
My dependencies are:
And my _app.tsx configuration is:
The text was updated successfully, but these errors were encountered: