From fbd958c48078cdee83aa123c93c8897135cc00e6 Mon Sep 17 00:00:00 2001 From: Aditi Upadhyay Date: Thu, 9 Jul 2026 01:29:30 +0530 Subject: [PATCH 1/5] style: polish sidebar navigation active states and fix overflow scrollbar glitch --- frontend/src/components/layout/Sidebar.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/frontend/src/components/layout/Sidebar.tsx b/frontend/src/components/layout/Sidebar.tsx index f2f96260..7f27764a 100644 --- a/frontend/src/components/layout/Sidebar.tsx +++ b/frontend/src/components/layout/Sidebar.tsx @@ -64,9 +64,7 @@ const groups: Group[] = [ }, { label: "Account", - items: [ - { label: "Settings", to: "/settings", icon: }, - ], + items: [{ label: "Settings", to: "/settings", icon: }], }, ]; @@ -98,7 +96,7 @@ export function Sidebar({ open, onClose }: { open: boolean; onClose: () => void DevLink -