From 1aa50cdfc9ab248411216752a63bc25c7ad880f4 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 20 Apr 2024 12:21:30 -0700 Subject: [PATCH] fix: map access --- config/collections/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/collections/index.js b/config/collections/index.js index df991c90..2406d3e5 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -60,7 +60,7 @@ export const tagMap = (collection) => { }) links.forEach((link) => { const url = link.data.link - const tagString = [...new Set(link.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))] + const tagString = [...new Set(link.data.tags?.map((tag) => tagAliases[tag.toLowerCase()]))] .join(' ') .trim() if (tagString) tags[url] = tagString.replace(/\s+/g,' ')