diff --git a/frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx b/frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx index cdcda5cca7..3debe93d0c 100644 --- a/frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx +++ b/frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx @@ -1,9 +1,13 @@ +import { useState } from "react"; + export default function ChromaDBOptions({ settings }) { + const [isCloud, setIsCloud] = useState(settings?.ChromaCloud === "true"); + return ( -
+
-