This commit is contained in:
Daniel
2023-07-05 10:43:37 +03:30
parent 9af7bab1db
commit 818b04b781
3 changed files with 15 additions and 38 deletions
-11
View File
@@ -9,7 +9,6 @@ type Props = {
name: boolean;
url: boolean;
description: boolean;
collection: boolean;
tags: boolean;
};
};
@@ -53,16 +52,6 @@ export default function FilterSearchDropdown({
})
}
/>
<Checkbox
label="Collection"
state={searchFilter.collection}
onClick={() =>
setSearchFilter({
...searchFilter,
collection: !searchFilter.collection,
})
}
/>
<Checkbox
label="Tags"
state={searchFilter.tags}