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>