fix: filter

This commit is contained in:
Cory Dransfeldt 2024-10-30 20:55:38 -07:00
parent 1b89de2af7
commit a5616be99c
No known key found for this signature in database

View file

@ -48,7 +48,7 @@ export default async function () {
const books = await fetchAllBooks();
const sortedByYear = sortBooksByYear(books);
const booksForCurrentYear =
sortedByYear.find((yearGroup) => yearGroup.value === currentYear)?.data ||
sortedByYear.find((yearGroup) => yearGroup.value === currentYear)?.data.filter(book => book['status'] === 'finished') ||
[];
return {