fix: set default state for todo list collapse to true
This commit is contained in:
parent
6f6d799051
commit
018241c203
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue