diff --git a/src/components/manga/ChapterCard.tsx b/src/components/manga/ChapterCard.tsx index ffc61ebf63..a1f6aeaad0 100644 --- a/src/components/manga/ChapterCard.tsx +++ b/src/components/manga/ChapterCard.tsx @@ -69,7 +69,7 @@ export const ChapterCard: React.FC = (props: IProps) => { if (key === 'markPrevRead') { const index = chapterIds.findIndex((chapterId) => chapterId === chapter.id); - requestManager.updateChapters(chapterIds.slice(index, -1), { isRead: true }); + requestManager.updateChapters(chapterIds.slice(index), { isRead: true }); return; }