Remove action indicators from TasksSection and TabBar components (green dot)

This commit is contained in:
tusharmagar 2026-04-02 09:36:14 +05:30
parent 0b9698b0da
commit 48edd98fe0
2 changed files with 0 additions and 6 deletions

View file

@ -1324,9 +1324,6 @@ function TasksSection({
}}
>
<div className="flex w-full items-center gap-2 min-w-0">
{processingRunIds?.has(run.id) ? (
<span className="size-2 shrink-0 rounded-full bg-emerald-500 animate-pulse" />
) : null}
<span className="min-w-0 flex-1 truncate text-sm">{run.title || '(Untitled chat)'}</span>
{run.createdAt ? (
<span className="shrink-0 text-[10px] text-muted-foreground">

View file

@ -67,9 +67,6 @@ export function TabBar<T>({
)}
style={layout === 'scroll' ? { flex: '0 0 auto' } : { flex: '1 1 0px' }}
>
{processing && (
<span className="size-1.5 shrink-0 rounded-full bg-emerald-500 animate-pulse" />
)}
<span className="truncate flex-1 text-left">{title}</span>
{(allowSingleTabClose || tabs.length > 1) && (
<span