uniq by title

This commit is contained in:
zmeyer44 2023-10-18 22:11:00 -04:00
parent 890157a6a6
commit 6fb452f56b

View File

@ -26,7 +26,7 @@ export default function FeaturedLists() {
limit: 60,
},
});
const uniq = uniqBy((e) => e.id, events);
const uniq = uniqBy((e) => getTagValues("title", e.tags), events);
const processedEvents = uniqBy((e) => getTagValues("d", e.tags), uniq)
.filter(
(a) =>