diff --git a/packages/web/components/templates/homeFeed/HighlightsLayout.tsx b/packages/web/components/templates/homeFeed/HighlightsLayout.tsx index 425be9134..ec74ead75 100644 --- a/packages/web/components/templates/homeFeed/HighlightsLayout.tsx +++ b/packages/web/components/templates/homeFeed/HighlightsLayout.tsx @@ -110,57 +110,70 @@ export function HighlightItemsLayout( - - {items.length > 0 ? ( - <> - - - - ) : ( - - No highlights found - - )} - + + + + + + {currentItem && ( <> - + + + )} @@ -203,6 +227,7 @@ function LibraryItemsList(props: LibraryItemsListProps): JSX.Element { width: '100%', height: '100%', px: '15px', + cursor: 'pointer', }} onClick={(event) => { props.setCurrentItem(linkedItem) @@ -351,7 +376,6 @@ function HighlightList(props: HighlightListProps): JSX.Element { - + {(props.item.node.highlights ?? []).map((highlight) => ( ))} +