From f57e7c556ec4a24ee1184cfc9c16dc5339d2e23e Mon Sep 17 00:00:00 2001 From: Kyle Ramachandran Date: Sun, 20 Oct 2024 12:35:32 -0700 Subject: [PATCH] fix es-lint errors --- components/FilterDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/FilterDropdown.tsx b/components/FilterDropdown.tsx index f321baa..faaaa91 100644 --- a/components/FilterDropdown.tsx +++ b/components/FilterDropdown.tsx @@ -4,7 +4,7 @@ interface FilterDropdownProps { name: string; id: string; value: string; - setStateAction: React.SetStateAction; + setStateAction: React.Dispatch>; options: string[]; placeholder: string; }