fix missing sidebar active icon

This commit is contained in:
jeffvli
2025-12-01 20:04:51 -08:00
parent 93d4536ba6
commit 4abfbd1973
3 changed files with 17 additions and 23 deletions
@@ -114,10 +114,7 @@ export const Sidebar = () => {
return (
<SidebarItem key={`sidebar-${item.route}`} to={item.route}>
<Group gap="sm">
<SidebarIcon
active={location.pathname === item.route}
route={item.route}
/>
<SidebarIcon route={item.route} />
{item.label}
</Group>
</SidebarItem>