Skip to content

Commit

Permalink
chore: 이미지 깨짐 해결 시도
Browse files Browse the repository at this point in the history
  • Loading branch information
wokbjso committed Sep 13, 2024
1 parent 0f3826b commit 60035ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/record/components/organisms/photo-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function PhotoSection({
try {
if (e.target.files) {
const targetFile = e.target.files[0];
const resizedImage = await resizeFile(targetFile, 600, 600, 100);
const resizedImage = await resizeFile(targetFile, 800, 1000, 100);
setFormSubInfo((prev) => ({
...prev,
imageFiles: [...prev.imageFiles, resizedImage],
Expand Down

0 comments on commit 60035ef

Please sign in to comment.