fix: drop unused property
This commit is contained in:
parent
71210e6f22
commit
88a17aa401
4 changed files with 18 additions and 19 deletions
|
@ -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) => {
|
||||
|
|
Reference in a new issue