From bd982a124ca693443597b360ee234113485c471a Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Mon, 15 Jun 2026 12:31:28 -0500 Subject: [PATCH] Drop Send bound from TUI screens --- src/user/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/mod.rs b/src/user/mod.rs index 04e895b..abe1488 100644 --- a/src/user/mod.rs +++ b/src/user/mod.rs @@ -74,7 +74,7 @@ fn truncate(s: &str, max: usize) -> String { } /// A screen that can draw itself and handle input. -trait ScreenView: Send { +trait ScreenView { fn tick(&mut self, frame: &mut ratatui::Frame, area: ratatui::layout::Rect, events: &[ratatui::crossterm::event::Event], app: &mut App); fn label(&self) -> &'static str;