fix: drop unused search text

This commit is contained in:
Cory Dransfeldt 2024-03-21 10:45:31 -07:00
parent e9c08c1a90
commit ed560d1bfe
No known key found for this signature in database
3 changed files with 3 additions and 5 deletions

View file

@ -15,7 +15,6 @@ export const searchIndex = (collection) => {
id,
url,
title: `📝: ${post.data.title}`,
text: post.data.description,
tags: post.data.tags.filter((tag) => tag !== 'posts'),
})
id++;
@ -27,7 +26,6 @@ export const searchIndex = (collection) => {
id,
url: link.url,
title: `🔗: ${link.title}`,
text: link.summary,
tags: link.tags,
})
id++;