diff --git a/desktop/src/features/agents/ui/AgentSessionTranscriptList.tsx b/desktop/src/features/agents/ui/AgentSessionTranscriptList.tsx index faef6fed7..8f76ea088 100644 --- a/desktop/src/features/agents/ui/AgentSessionTranscriptList.tsx +++ b/desktop/src/features/agents/ui/AgentSessionTranscriptList.tsx @@ -608,17 +608,13 @@ function TurnSetupFooter({ {showContext ? ( Context - - {context.sections.length} - ) : null} diff --git a/desktop/src/shared/ui/toggle.tsx b/desktop/src/shared/ui/toggle.tsx index 5d3671d8b..939b2df16 100644 --- a/desktop/src/shared/ui/toggle.tsx +++ b/desktop/src/shared/ui/toggle.tsx @@ -10,10 +10,12 @@ const toggleVariants = cva( variants: { variant: { default: "bg-transparent", - outline: "border border-input/40 bg-background hover:bg-muted/70", + outline: + "border border-input/40 bg-background hover:bg-muted/70 data-[state=on]:bg-muted data-[state=on]:text-foreground", }, size: { default: "h-9 px-3 min-w-9", + xs: "h-5 min-h-0 min-w-0 gap-1 rounded-md px-1.5 text-xs font-medium", sm: "h-8 px-2 min-w-8", lg: "h-10 px-3 min-w-10", },