Revert "chore: 11ty img"

This reverts commit 73eb06739e.
This commit is contained in:
Cory Dransfeldt 2024-06-06 15:33:48 -07:00
parent 73eb06739e
commit 2c18ab1030
No known key found for this signature in database
23 changed files with 270 additions and 728 deletions

View file

@ -40,8 +40,6 @@ const fetchAllMovies = async () => {
rangeStart += PAGE_SIZE
}
movies = movies.filter(movie => movie.last_watched)
return movies
}
@ -68,7 +66,6 @@ export default async function () {
}
return movie
}).filter(movie => watched ? movie['lastWatched'] : !movie['lastWatched'])
const favoriteMovies = movies.filter(movie => movie['favorite'])
const collectedMovies = movies.filter(movie => movie['collected'])
const recentlyWatchedMovies = movies.filter(movie => movie['last_watched']).sort((a, b) => new Date(b['last_watched']) - new Date(a['last_watched']))