@@ -132,52 +108,45 @@ function SidebarContent() {
className={cn(
isChildActive(item.children)
? 'text-primary-400'
- : 'text-text-muted group-hover:text-primary-400',
+ : 'text-text-muted',
'h-4 w-4 shrink-0 transition-colors'
)}
aria-hidden="true"
/>
{item.name}
- {expandedItems.has(item.name) ? (
-
- ) : (
-
- )}
-
- {expandedItems.has(item.name) && (
-
- {item.children.map(child => (
- -
-
- cn(
- isActive
- ? 'bg-surface-secondary text-primary-400 border-l-2 border-primary-500'
- : 'text-text-secondary hover:text-primary-400 hover:bg-surface-secondary',
- 'group flex gap-x-2 rounded-r-md px-2 py-1 text-sm leading-tight font-medium transition-colors'
- )
- }
- >
- {({ isActive }) => (
- <>
-
- {child.name}
- >
- )}
-
-
- ))}
-
- )}
+
+