From 193a85bc05e348a90d8c449b0996094831d4ddf0 Mon Sep 17 00:00:00 2001 From: ProofOfConcept Date: Sat, 11 Apr 2026 01:47:57 -0400 Subject: [PATCH] chat: remove dead timeout fields from InteractScreen turn_started, call_started, call_timeout_secs were declared and initialized but never read. Co-Authored-By: Kent Overstreet --- src/user/chat.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/user/chat.rs b/src/user/chat.rs index 8756895..b3431b8 100644 --- a/src/user/chat.rs +++ b/src/user/chat.rs @@ -438,9 +438,6 @@ pub(crate) struct InteractScreen { history_index: Option, active_pane: ActivePane, pane_areas: [Rect; 3], - turn_started: Option, - call_started: Option, - call_timeout_secs: u64, // State sync with agent — double buffer last_generation: u64, last_entries: Vec, @@ -466,9 +463,6 @@ impl InteractScreen { history_index: None, active_pane: ActivePane::Conversation, pane_areas: [Rect::default(); 3], - turn_started: None, - call_started: None, - call_timeout_secs: 60, last_generation: 0, last_entries: Vec::new(), pending_display_count: 0,