This commit is contained in:
Cory Dransfeldt 2024-04-20 13:17:50 -07:00
parent f399302dfe
commit f32ae93be5

View file

@ -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()