fix: invalid isOpen flag (#1676)
This commit is contained in:
parent
d6f3c2515a
commit
bc8be73d6c
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue