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 a745b824d5
commit 35c5b6ba6b
1 changed files with 1 additions and 1 deletions

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,