프론트엔드/React

[React] EsLint React Hook useEffect has a missing dependency: 'calcSumApplication'. Either include it or remove the dependency array react-hooks/exhaustive-deps 경고 없애기

순코딩 2024. 1. 23. 23:22
// eslint-disable-next-line react-hooks/exhaustive-deps 추가

// 예시
useEffect(() => {
  calcSumApplication();
  // eslint-disable-next-line react-hooks/exhaustive-deps
}, [allApplication]);