fix some bugs

This commit is contained in:
Aria Moradi
2021-02-21 04:41:56 +03:30
parent 9151034fbc
commit ce545b1fd5
3 changed files with 7 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ export default function CategorySelect(props: IProps) {
setCategoryInfos(tmpCategoryInfos);
});
});
}, [updateTriggerHolder]);
}, [updateTriggerHolder, open]);
const handleCancel = () => {
setOpen(false);
@@ -90,7 +90,6 @@ export default function CategorySelect(props: IProps) {
<Checkbox
checked={categoryInfo.selected}
onChange={(e) => handleChange(e, categoryInfo.category.id)}
name="checkedB"
color="default"
/>
)}