fix: set default state for todo list collapse to true

This commit is contained in:
Henry Li
2026-02-02 14:46:26 +08:00
parent e01127eec9
commit 8bc9d1b226

View File

@@ -168,7 +168,7 @@ export default function ChatPage() {
return artifactsOpen;
}, [artifactsOpen, artifacts]);
const [todoListCollapsed, setTodoListCollapsed] = useState(false);
const [todoListCollapsed, setTodoListCollapsed] = useState(true);
const handleSubmit = useSubmitThread({
isNewThread,