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
@@ -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"
/>
)}
+1 -1
View File
@@ -26,7 +26,7 @@ export default function MangaDetails(props: IProps) {
const [inLibrary, setInLibrary] = useState<string>(
manga.inLibrary ? 'In Library' : 'Not In Library',
);
const [categoryDialogOpen, setCategoryDialogOpen] = useState<boolean>(true);
const [categoryDialogOpen, setCategoryDialogOpen] = useState<boolean>(false);
function addToLibrary() {
setInLibrary('adding');