small fix

This commit is contained in:
Daniel 2023-07-05 11:05:04 +03:30
parent 818b04b781
commit 3993615071
2 changed files with 2 additions and 7 deletions

View File

@ -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({

View File

@ -19,7 +19,6 @@ export default function Links() {
name: true,
url: true,
description: true,
collection: true,
tags: true,
});