From 3d8be7040a26a57696669cba96585d66265d6324 Mon Sep 17 00:00:00 2001 From: lycaon Date: Sat, 18 Jul 2026 10:33:41 -0600 Subject: [PATCH 1/2] fix(web): keep compaction status semantic row singular --- .../features/transcript/TranscriptRows.tsx | 15 ++++++-- .../transcript/TranscriptTimeline.tsx | 1 + apps/web/test/compaction-status.test.tsx | 36 +++++++++++++++++-- 3 files changed, 48 insertions(+), 4 deletions(-) diff --git a/apps/web/src/features/transcript/TranscriptRows.tsx b/apps/web/src/features/transcript/TranscriptRows.tsx index 76af3fad..59548026 100644 --- a/apps/web/src/features/transcript/TranscriptRows.tsx +++ b/apps/web/src/features/transcript/TranscriptRows.tsx @@ -609,15 +609,19 @@ function UnknownEntryRow({ function WorkingRow({ row, nowMs, + ghost, }: { readonly row: Extract; readonly nowMs: number; + readonly ghost: boolean; }) { const compacting = row.activity === "preparing-context"; return (