small fix
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user