TypeError : Can't not read properties of undefined(reading 'map')(feat : Vercel build error)

bebrain·2023년 4월 8일
0

build 중 AboutMe 컴포넌트에서 에러가 발생했다.

map함수를 쓴 곳은 notion api 데이터를 불러오는 곳인데...?

코드를 보니 그냥 data.results.map(~)으로 써 놨다.

옵셔널체이닝(?.)으로 간단해결

data.results?.map()

0개의 댓글