refactor: comment out ls tool handling, update assistant UI colors and spacing.

This commit is contained in:
Anish Sarkar 2025-12-28 01:30:53 +05:30
parent 2c64fcc38e
commit 0164659f7a
3 changed files with 13 additions and 13 deletions

View file

@ -38,7 +38,7 @@ export function NavSecondary({
<SidebarMenuItem key={`${item.title}-${index}`}>
{item.url === "#" ? (
// Non-interactive display item (e.g., search space name)
<div className="flex w-full items-center gap-2 rounded-md p-2 text-sm text-sidebar-foreground">
<div className="flex h-7 w-full items-center gap-2 rounded-md px-2 text-xs text-sidebar-foreground">
<item.icon className="h-4 w-4 shrink-0" />
<span className="truncate">{item.title}</span>
</div>