Remove a stale transcript field assignment from the TUI (#43584)

`TranscriptState` has no `had_work_activity` field. Remove the assignment
from computer tool call completion handling to fix the resulting compile
error.

GitOrigin-RevId: 2adb15a213992e40a58dc6f217d7ae8d64c48154
This commit is contained in:
felixxia-oai
2026-09-07 20:20:26 +00:00
committed by copyberry
parent b01c3986fd
commit a444546564

View File

@@ -244,7 +244,6 @@ impl ChatWidget {
);
self.update_computer_activity(|cell| cell.complete(call, duration, result));
self.bump_active_cell_revision();
self.transcript.had_work_activity = true;
self.request_redraw();
return;
}