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,