From 553c534f35db9b0aaf02de91027bc28341fad216 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Thu, 12 Feb 2026 19:44:03 +0300 Subject: [PATCH] refactor(todo): update TodoListContentProps to include optional id and priority fields that are used in TodoList.jsx --- .../chat/tools/components/ContentRenderers/TodoListContent.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/chat/tools/components/ContentRenderers/TodoListContent.tsx b/src/components/chat/tools/components/ContentRenderers/TodoListContent.tsx index 81b01d5..5d318ba 100644 --- a/src/components/chat/tools/components/ContentRenderers/TodoListContent.tsx +++ b/src/components/chat/tools/components/ContentRenderers/TodoListContent.tsx @@ -3,9 +3,10 @@ import TodoList from '../../../../TodoList'; interface TodoListContentProps { todos: Array<{ + id?: string; content: string; status: string; - activeForm?: string; + priority?: string; }>; isResult?: boolean; }