chat sessions in project view

This commit is contained in:
Storme-bit
2026-04-14 01:55:25 -07:00
parent c892f54a04
commit f8fcc99929

View File

@@ -6,7 +6,7 @@ export default function ProjectModal({ project, mode, onSave, onDelete, onClose
const [name, setName] = useState(project?.name ?? '');
const [description, setDescription] = useState(project?.description ?? '');
const [colour, setColour] = useState(project?.colour ?? COLOURS[0]);
const [projectOnly, setProjectOnly] = useState(project?.projectOnly === 1 ?? false);
const [projectOnly, setProjectOnly] = useState(project?.projectOnly === 1);
const inputRef = useRef(null);
useEffect(() => {