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