From feb3134b65866bc22b014b9ba17a08f2674e43bc Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 23 Oct 2025 16:52:24 +0200 Subject: [PATCH] refactor: move grouping toggle to left side next to support button Move the grouped/chronological toggle button from right/center to the left side, positioned next to the orange heart support button in both BookmarkList and Me components for better UX consistency. --- src/components/BookmarkList.tsx | 8 ++++--- src/components/Me.tsx | 37 +++++++++++++++++++-------------- 2 files changed, 26 insertions(+), 19 deletions(-) diff --git a/src/components/BookmarkList.tsx b/src/components/BookmarkList.tsx index 1f51c957..8bab75b2 100644 --- a/src/components/BookmarkList.tsx +++ b/src/components/BookmarkList.tsx @@ -314,9 +314,7 @@ export const BookmarkList: React.FC = ({ variant="ghost" style={{ color: friendsColor }} /> - - {activeAccount && ( -
+ {activeAccount && ( = ({ ariaLabel={groupingMode === 'grouped' ? 'Switch to flat view' : 'Switch to grouped view'} variant="ghost" /> + )} +
+ {activeAccount && ( +
{onRefresh && ( = ({
)))} -
- +
+
+ navigate('/support')} + title="Support Boris" + ariaLabel="Support" + variant="ghost" + style={{ color: 'rgb(251 146 60)' }} + /> + +
+
+
)