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
1 changed files with 1 additions and 1 deletions

View File

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