From fac448153f857394f85d061139157bd7e32e2a06 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Sun, 29 Mar 2026 17:13:30 +0200 Subject: [PATCH] feat: move Matrix tab to first position Co-authored-by: Qwen-Coder --- src/components/Sidebar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index f515b63..61b565a 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -9,8 +9,8 @@ interface SidebarProps { export function Sidebar({ activeModule, setActiveModule }: SidebarProps) { const navItems = [ - { id: 'descriptions', label: 'Product Descriptions', icon: FileText }, { id: 'matrix', label: 'Matrix', icon: Table }, + { id: 'descriptions', label: 'Product Descriptions', icon: FileText }, ] as const; return ( @@ -28,8 +28,8 @@ export function Sidebar({ activeModule, setActiveModule }: SidebarProps) { onClick={() => setActiveModule(item.id)} className={cn( "w-full flex items-center gap-3 px-3 py-2.5 rounded-md text-sm font-medium transition-colors", - isActive - ? "bg-blue-600/10 text-blue-400" + isActive + ? "bg-blue-600/10 text-blue-400" : "text-slate-300 hover:bg-slate-700/50 hover:text-white" )} >