fix: properly generate 2020 book page

This commit is contained in:
Cory Dransfeldt 2024-07-15 19:25:48 -07:00
parent 54fced00e1
commit 98df43710d
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -78,7 +78,7 @@ const sortBooksByYear = (books) => {
years[year]['data'].push(book)
}
})
return Object.values(years).filter(year => year.value > 2020)
return Object.values(years).filter(year => year.value > 2019)
}
export default async function () {