From fd60c2b8be8e9f13574812b986b8e57baaa8aa41 Mon Sep 17 00:00:00 2001 From: Hare Date: Thu, 3 Sep 2026 05:03:49 +0900 Subject: [PATCH] fix: render TUI attachment notices with supported alert level --- crates/tui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/tui/src/app.rs b/crates/tui/src/app.rs index 41bd7030..fd69315f 100644 --- a/crates/tui/src/app.rs +++ b/crates/tui/src/app.rs @@ -930,7 +930,7 @@ impl App { pub fn push_notice(&mut self, message: impl Into) { self.blocks.push(Block::Alert { - level: AlertLevel::Info, + level: AlertLevel::Warn, source: AlertSource::Worker, message: message.into(), });