less than 1 minute read

Warning: Failed prop type: Invalid prop post.id of type number supplied to PostCard, expected string.

post.id가 숫자여서 경고가 발생했고 문자열로 바꿔서 해결하려고 했다.

하지만 그 문제가 아니였다.

component에 prop-type 설정을 바꾸면 좋겟다는 경고였다.

prop-type를 문자로 되어있는데 숫자가 들어왔으니 숫자로 바꿔달라는 것이었다.

Updated: