diff --git a/src/modules/chapter/components/actions/ChapterActionMenuItems.tsx b/src/modules/chapter/components/actions/ChapterActionMenuItems.tsx index f9e6942f..98cef3ca 100644 --- a/src/modules/chapter/components/actions/ChapterActionMenuItems.tsx +++ b/src/modules/chapter/components/actions/ChapterActionMenuItems.tsx @@ -150,7 +150,9 @@ export const ChapterActionMenuItems = ({ return []; } - return allChapters.slice(index + 1); + const previousChapters = allChapters.slice(index + 1); + + return Chapters.getNonRead(previousChapters); }; const chaptersToUpdate = getChapters();