React 에러 - Cannot read properties of undefined {reading 'length'}, webpack 빌드 에러

Yoon_Jung·2022년 2월 16일
0

에러모음

목록 보기
1/2
post-thumbnail

220216 Cannot read properties of undefined {reading 'length'}

state가 변경되려면 return이 되어야 하는데 습관적으로 아래와 같이 작성.

setResult((prevResult) => {
	[...prevResult, (endTime.current - startTime.current)]
});

hooks 입장에서는 그래서 뭐가 변경되었는지 알 수 없는 상황.
아래와 같이 ()로 묶어서 리턴해주거나 명시적으로 return을 써줘야함.


220211 webpack 빌드 에러
올리기도 창피한 오타ㅎ... 한번 더 틀리는 일은 없으려고 박제🤣

profile
https://codekyz.tistory.com/

0개의 댓글