From a44454656459437fc8e2ffa9eca0646537b1fdfd Mon Sep 17 00:00:00 2001 From: felixxia-oai Date: Mon, 7 Sep 2026 20:20:26 +0000 Subject: [PATCH] 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 --- codex-rs/tui/src/chatwidget/tool_lifecycle.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/codex-rs/tui/src/chatwidget/tool_lifecycle.rs b/codex-rs/tui/src/chatwidget/tool_lifecycle.rs index 393604de30..d8ff1c61d3 100644 --- a/codex-rs/tui/src/chatwidget/tool_lifecycle.rs +++ b/codex-rs/tui/src/chatwidget/tool_lifecycle.rs @@ -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; }