From f32ae93be56ea3cb80876d1679ddb3c59c8a1f20 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 20 Apr 2024 13:17:50 -0700 Subject: [PATCH] fix: map --- 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 8724d00e..cf592751 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -74,7 +74,7 @@ export const tagMap = (collection) => { if (books) { books.forEach((book) => { - const tagString = book?.['tags'] + const tagString = book.['tags']? .map((tag) => tagAliases[tag.toLowerCase()]) .join(' ') .trim()