[eslint]
src/hooks/useAllUsers.ts
Line 19:6: React Hook useCallback has a missing dependency: 'showMessage'. Either include it or remove the dependency array react-hooks/exhaustive-deps
Search for the keywords to learn more about each warning.
To ignore, add // eslint-disable-next-line to the line before.
WARNING in [eslint]
src/hooks/useAllUsers.ts
Line 19:6: React Hook useCallback has a missing dependency: 'showMessage'. Either include it or remove the dependency array react-hooks/exhaustive-deps
webpack compiled with 1 warning
No issues found.
まずは下記コード
結論
依存配列の中には、使用する
関数
や引数``props
を入れなければならない 意図しない無限ループが発生してしまう。