diff --git a/src/components/chapter/ChapterCard.tsx b/src/components/chapter/ChapterCard.tsx index b58f8c83..81172673 100644 --- a/src/components/chapter/ChapterCard.tsx +++ b/src/components/chapter/ChapterCard.tsx @@ -34,7 +34,7 @@ export default function ChapterCard(props: IProps) { chapter, triggerChaptersUpdate, downloadStatusString, showChapterNumber, } = props; - const dateStr = chapter.uploadDate && new Date(chapter.uploadDate).toISOString().slice(0, 10); + const dateStr = chapter.uploadDate && new Date(chapter.uploadDate).toLocaleDateString(); const [anchorEl, setAnchorEl] = React.useState(null);