fix: render TUI attachment notices with supported alert level

This commit is contained in:
2026-09-03 05:03:49 +09:00
parent e27b4feb25
commit fd60c2b8be
+1 -1
View File
@@ -930,7 +930,7 @@ impl App {
pub fn push_notice(&mut self, message: impl Into<String>) { pub fn push_notice(&mut self, message: impl Into<String>) {
self.blocks.push(Block::Alert { self.blocks.push(Block::Alert {
level: AlertLevel::Info, level: AlertLevel::Warn,
source: AlertSource::Worker, source: AlertSource::Worker,
message: message.into(), message: message.into(),
}); });