HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
📜
[팀13] 사각사각 ✏️
/
🍢
외않되?
/
bool 타입 Props 에러

bool 타입 Props 에러

 
지정한 bool타입으로 사용했는데도 오류가 난다
notion image
ImageUpload.propTypes = { onChange: PropTypes.func, circle: PropTypes.bool, buttonName: PropTypes.string, src: PropTypes.string, name: PropTypes.string, wide: PropTypes.bool, }; <StyledImageUpload onChange={handleImageUpload} name="thumbnail" src={values.thumbnailUrl} wide />
 

해결책

숫자로 사용하되 사용시 bool값에 연산자를 붙힌다
ImageUpload.propTypes = { onChange: PropTypes.func, circle: PropTypes.bool, buttonName: PropTypes.string, src: PropTypes.string, name: PropTypes.string, wide: PropTypes.number, }; <StyledImageUpload onChange={handleImageUpload} name="thumbnail" src={values.thumbnailUrl} wide={+true} />