diff --git a/packages/web/components/templates/homeFeed/HighlightsLayout.tsx b/packages/web/components/templates/homeFeed/HighlightsLayout.tsx index 9d445f05d..27f04fd28 100644 --- a/packages/web/components/templates/homeFeed/HighlightsLayout.tsx +++ b/packages/web/components/templates/homeFeed/HighlightsLayout.tsx @@ -84,7 +84,9 @@ export function HighlightItemsLayout( useEffect(() => { dispatchList({ type: 'RESET', - items: props.items, + items: props.items.filter( + (item) => item.node.highlights && item.node.highlights.length > 0 + ), }) }, [props.items])