Skip to content

Commit

Permalink
fix: 문구 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ojj1123 committed Aug 9, 2024
1 parent 8cadde8 commit 1710fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/molecules/ImageUploadButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ImageUploadButton({
const files = Array.from(e.target.files as FileList);

if (maxFiles && files.length > maxFiles) {
toast("free", "이미지는 5개 이하로 추가할 수 있어요.");
toast("free", `이미지는 ${maxFiles} 이하로 추가할 수 있어요.`);
return;
}

Expand Down

0 comments on commit 1710fb3

Please sign in to comment.