From 95f8866581e396ee9bcf95f69ff600f8c1a27339 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 3 Jan 2026 19:14:27 +0000 Subject: [PATCH] fix: Export ConnectionEventType and NetworkMode from TUI module These types were defined in tui::app but not re-exported from the tui module, causing build errors in server.rs which referenced them via crate::tui::ConnectionEventType and crate::tui::NetworkMode. --- native-bridge/src/tui/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native-bridge/src/tui/mod.rs b/native-bridge/src/tui/mod.rs index e990df2d..d044369e 100644 --- a/native-bridge/src/tui/mod.rs +++ b/native-bridge/src/tui/mod.rs @@ -5,7 +5,7 @@ mod app; mod ui; mod widgets; -pub use app::{ActivePanel, App, AppEvent, LogLevel}; +pub use app::{ActivePanel, App, AppEvent, ConnectionEventType, LogLevel, NetworkMode}; pub use ui::draw; use crossterm::{