fix: drop unused property

This commit is contained in:
Cory Dransfeldt 2024-09-09 06:46:17 -07:00
parent 71210e6f22
commit 88a17aa401
No known key found for this signature in database
4 changed files with 18 additions and 19 deletions

View file

@ -66,7 +66,7 @@ export const processContent = (collection) => {
}
const movieData = movies['movies'].filter((movie) => movie['rating'])
const showData = tv['shows'].filter((show) => show['last_watched_at'])
const showData = tv['shows'].filter((show) => show['episodes']?.[0]?.['last_watched_at'])
const bookData = books.all.filter((book) => book['rating'])
const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => {