chore: make search a little broader

This commit is contained in:
Cory Dransfeldt 2024-08-23 17:14:56 -07:00
parent fdf0ebf2ca
commit 01e0bc2572
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -65,8 +65,8 @@ export const processContent = (collection) => {
}
}
const movieData = movies['movies'].filter((movie) => movie['review']?.length && movie['rating'])
const bookData = books.all.filter((book) => book['review']?.length && book['rating'])
const movieData = movies['movies'].filter((movie) => movie['rating'])
const bookData = books.all.filter((book) => book['rating'])
const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => {
if (items) {