diff --git a/src/components/dashboard/sidebar/sidebar-links.tsx b/src/components/dashboard/sidebar/sidebar-links.tsx index 4d88bd6..039d152 100644 --- a/src/components/dashboard/sidebar/sidebar-links.tsx +++ b/src/components/dashboard/sidebar/sidebar-links.tsx @@ -75,7 +75,10 @@ const Links = (): ReactElement => { index === 0 || (index > 0 && selectedOrganization) ) .map((link: SidebarLink, index: number) => { - const active: boolean = path.startsWith(link.href); + const active: boolean = + index === 0 + ? path === link.href + : path.startsWith(link.href); return (