mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: invalid isOpen flag (#1676)
This commit is contained in:
parent
d6f3c2515a
commit
bc8be73d6c
@ -52,7 +52,7 @@ export const ImagePickerPopover: React.FC<Props> = ({ label, value, onChange })
|
||||
const [image, setImage] = useState<File | null>(null);
|
||||
const [isImageUploading, setIsImageUploading] = useState(false);
|
||||
|
||||
const [isOpen, setIsOpen] = useState(true);
|
||||
const [isOpen, setIsOpen] = useState(false);
|
||||
const [searchParams, setSearchParams] = useState("");
|
||||
const [formData, setFormData] = useState({
|
||||
search: "",
|
||||
|
Loading…
Reference in New Issue
Block a user