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 6f6d799051
commit 018241c203

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,