Skip to content

Commit

Permalink
fix: 썸네일 이미지 경로에 슬래시 추가 (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonddori authored Nov 24, 2024
1 parent 552c344 commit 25bf1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DocumentCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const DocumentCard = ({ id, title, description, date, setReload, files, type }:
return '/png/file.png';
}
if (files.length > 1) {
return 'png/folder.png';
return '/png/folder.png';
}
}
return '';
Expand Down

0 comments on commit 25bf1b9

Please sign in to comment.