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
When useTranslation is called before initReactI18next, it returns early with the "not ready" result object. Later, after the init function gets called, the hook continues past that early return and calls other hooks (e.g. useState) which it didn't call before.
This behaviour is in violation of React's rules of hooks.