diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index 94bd2f121b..ef44971205 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -492,10 +492,12 @@ impl ChatWidget<'_> { EventMsg::ShutdownComplete => { self.app_event_tx.send(AppEvent::ExitRequest); } - event => { - let text = format!("{event:?}"); - self.add_to_history(HistoryCell::new_background_event(text.clone())); - self.update_latest_log(text); + EventMsg::BackgroundEvent(_) | EventMsg::PatchApplyEnd(_) | EventMsg::TurnDiff(_) => { + // event => { + // let text = format!("{event:?}"); + // self.add_to_history(HistoryCell::new_background_event(text.clone())); + // self.update_latest_log(text); + // } } } }