small fix
This commit is contained in:
parent
818b04b781
commit
3993615071
|
@ -1,16 +1,12 @@
|
|||
import React, { SetStateAction } from "react";
|
||||
import ClickAwayHandler from "./ClickAwayHandler";
|
||||
import Checkbox from "./Checkbox";
|
||||
import { LinkSearchFilter } from "@/types/global";
|
||||
|
||||
type Props = {
|
||||
setFilterDropdown: (value: SetStateAction<boolean>) => void;
|
||||
setSearchFilter: Function;
|
||||
searchFilter: {
|
||||
name: boolean;
|
||||
url: boolean;
|
||||
description: boolean;
|
||||
tags: boolean;
|
||||
};
|
||||
searchFilter: LinkSearchFilter;
|
||||
};
|
||||
|
||||
export default function FilterSearchDropdown({
|
||||
|
|
|
@ -19,7 +19,6 @@ export default function Links() {
|
|||
name: true,
|
||||
url: true,
|
||||
description: true,
|
||||
collection: true,
|
||||
tags: true,
|
||||
});
|
||||
|
||||
|
|
Ŝarĝante…
Reference in New Issue