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[] };