From ef09a75fba22365935d732f87b200733a97d833a Mon Sep 17 00:00:00 2001 From: Hare Date: Fri, 29 May 2026 14:09:22 +0900 Subject: [PATCH] fix: render task reminder system items --- crates/tui/src/app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/tui/src/app.rs b/crates/tui/src/app.rs index 779e00b9..f431289b 100644 --- a/crates/tui/src/app.rs +++ b/crates/tui/src/app.rs @@ -1678,6 +1678,7 @@ impl App { session_store::SystemItem::FileAttachment { body, .. } | session_store::SystemItem::Knowledge { body, .. } | session_store::SystemItem::Workflow { body, .. } + | session_store::SystemItem::TaskReminder { body, .. } | session_store::SystemItem::Interrupt { body } => { self.task_store.apply_system_message_text(&body); self.blocks.push(Block::SystemMessage { text: body });