From 365b84ba9d0bcea41b5aa9f87ded3a4493b36ec4 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 3 Oct 2025 01:57:51 +0200 Subject: [PATCH] refactor(ui): remove duplicate bookmark title and heading - Remove bookmark title (h3) from bookmark items - Remove duplicate h4 heading from individual-bookmarks section - Keep only the single 'X bookmarks in this list:' line with event link --- src/components/BookmarkList.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/components/BookmarkList.tsx b/src/components/BookmarkList.tsx index b0508b9e..16eb1961 100644 --- a/src/components/BookmarkList.tsx +++ b/src/components/BookmarkList.tsx @@ -55,7 +55,6 @@ export const BookmarkList: React.FC = ({
{bookmarks.map((bookmark, index) => (
-

{bookmark.title}

{bookmark.bookmarkCount && (

{bookmark.bookmarkCount} bookmarks in{' '} @@ -82,18 +81,6 @@ export const BookmarkList: React.FC = ({ )} {bookmark.individualBookmarks && bookmark.individualBookmarks.length > 0 && (

-

- {bookmark.individualBookmarks.length} bookmarks in{' '} - - this list - - : -

{bookmark.individualBookmarks.map((individualBookmark, index) =>