From cfafa773ead276494136a2661f2d59bfaabbe935 Mon Sep 17 00:00:00 2001 From: dal Date: Fri, 22 Aug 2025 10:41:46 -0600 Subject: [PATCH] move reports above collections --- .../features/sidebars/SidebarPrimary.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/web/src/components/features/sidebars/SidebarPrimary.tsx b/apps/web/src/components/features/sidebars/SidebarPrimary.tsx index 71e2d7a86..42f736e78 100644 --- a/apps/web/src/components/features/sidebars/SidebarPrimary.tsx +++ b/apps/web/src/components/features/sidebars/SidebarPrimary.tsx @@ -84,19 +84,19 @@ const yourStuff = ( id: BusterRoutes.APP_DASHBOARDS, active: isActiveCheck('dashboard', BusterRoutes.APP_DASHBOARDS) }, - { - label: 'Collections', - icon: , - route: createBusterRoute({ route: BusterRoutes.APP_COLLECTIONS }), - id: BusterRoutes.APP_COLLECTIONS, - active: isActiveCheck('collection', BusterRoutes.APP_COLLECTIONS) - }, { label: 'Reports', icon: , route: createBusterRoute({ route: BusterRoutes.APP_REPORTS }), id: BusterRoutes.APP_REPORTS, active: isActiveCheck('report', BusterRoutes.APP_REPORTS) + }, + { + label: 'Collections', + icon: , + route: createBusterRoute({ route: BusterRoutes.APP_COLLECTIONS }), + id: BusterRoutes.APP_COLLECTIONS, + active: isActiveCheck('collection', BusterRoutes.APP_COLLECTIONS) } ].filter(Boolean) as ISidebarItem[] };