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

@ -186,14 +186,14 @@ const ThinkingStepsDisplay: FC<{ steps: ThinkingStep[]; isThreadRunning?: boolea
<div className="relative flex flex-col items-center w-2">
{/* Vertical connection line - extends to next dot */}
{!isLast && (
<div className="absolute left-1/2 top-[11px] -bottom-[7px] w-px -translate-x-1/2 bg-border" />
<div className="absolute left-1/2 top-[15px] -bottom-[7px] w-px -translate-x-1/2 bg-muted-foreground/30" />
)}
{/* Step dot - on top of line */}
<div className="relative z-10 mt-[7px] flex shrink-0 items-center justify-center">
{effectiveStatus === "in_progress" ? (
<span className="size-2 rounded-full bg-primary" />
<span className="size-2 rounded-full bg-muted-foreground/30" />
) : (
<span className="size-2 rounded-full bg-border" />
<span className="size-2 rounded-full bg-muted-foreground/30" />
)}
</div>
</div>

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>