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
Several places in the code has an ESLint warning react-hooks/exhaustive-deps that should be resolved. Run npm run check in the project root folder to find each instance.
warning React Hook useEffect has missing dependencies...
The text was updated successfully, but these errors were encountered:
Use // eslint-disable-next-line react-hooks/exhaustive-deps to ignore the warning
Discussion
I don't really know if it has a practical consequenses having it as we have it? The first option seems more cluttered. On the other hand, it would be nice to summarize what the useEffect actually does, as they currently have a lot of code in them. Thoughts? I think the first option might be the way to go, if we're able to give meaningful names to the functions.
Several places in the code has an ESLint warning react-hooks/exhaustive-deps that should be resolved. Run
npm run check
in the project root folder to find each instance.The text was updated successfully, but these errors were encountered: