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; }