작성
·
586
1
useEffect(() => {
getPostList();
}, [Sort]);
위 코드에서 아래와 같은 경고 메세지가 나옵니다.
Line 33:6: React Hook useEffect has a missing dependency: 'getPostList'. Either include it or remove the dependency array react-hooks/exhaustive-deps
있어도 동작 자체는 잘 되는 것 같습니다만, 이게 원래 뜨는게 정상인건지, 저만 뜨는건지 궁금합니다. 경고메세지를 그대로 남겨두는 것도 찜찜하고요;