## 이슈 내용 GetImagesBox/index.tsx에서 `maxLength` prop을 받지만 내부에서 `images.length === 10`, `images.length + files.length > 10`으로 하드코딩되어 있습니다. maxLength=5로 사용해도 10장까지 업로드 가능합니다. ## 수정 방향 하드코딩된 10을 `maxLength` prop으로 교체 Notion: TA-216
이슈 내용
GetImagesBox/index.tsx에서
maxLengthprop을 받지만 내부에서images.length === 10,images.length + files.length > 10으로 하드코딩되어 있습니다. maxLength=5로 사용해도 10장까지 업로드 가능합니다.수정 방향
하드코딩된 10을
maxLengthprop으로 교체Notion: TA-216