From 82639ec81b7bd43a7e38d3fde0c83df4d761bf75 Mon Sep 17 00:00:00 2001 From: kevin zhao Date: Mon, 17 Nov 2025 13:19:13 -0800 Subject: [PATCH] . --- codex-rs/tui/src/chatwidget.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/codex-rs/tui/src/chatwidget.rs b/codex-rs/tui/src/chatwidget.rs index 9fccd34d08..356d90a762 100644 --- a/codex-rs/tui/src/chatwidget.rs +++ b/codex-rs/tui/src/chatwidget.rs @@ -1740,15 +1740,13 @@ impl ChatWidget { (&default_usage, Some(&default_usage)) }; - let snapshot_for_display = self.rate_limit_snapshot.as_ref(); - self.add_to_history(crate::status::new_status_output( &self.config, self.auth_manager.as_ref(), - &total_usage, - context_usage.as_ref(), + total_usage, + context_usage, &self.conversation_id, - snapshot_for_display, + self.rate_limit_snapshot.as_ref(), Local::now(), )); }