Show "ContinueReadButton" on in library

This commit is contained in:
schroda
2024-05-08 18:59:01 +02:00
parent 4d3889532e
commit 23ea896524
3 changed files with 10 additions and 3 deletions

View File

@@ -171,7 +171,12 @@ export const LibraryDuplicates = () => {
)}
itemContent={(index) => (
<Box key={duplicatedMangas[index].id} sx={{ px: 1, pb: 1 }}>
<MangaCard manga={duplicatedMangas[index]} gridLayout={gridLayout} selected={null} />
<MangaCard
manga={duplicatedMangas[index]}
gridLayout={gridLayout}
selected={null}
mode="duplicate"
/>
</Box>
)}
/>
@@ -190,6 +195,7 @@ export const LibraryDuplicates = () => {
isLoading={false}
gridLayout={gridLayout}
horizontal
mode="duplicate"
/>
</Box>
));