From 10e2cdd2a622096ee2b1c304706421e04b33e770 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 19 Nov 2022 20:57:12 -0800 Subject: [PATCH] Continue fixing linter bugs --- components/SearchModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/SearchModal/index.tsx b/components/SearchModal/index.tsx index 88a0e340..45d9b5ce 100644 --- a/components/SearchModal/index.tsx +++ b/components/SearchModal/index.tsx @@ -46,7 +46,7 @@ const SearchModal = (props: Props) => { const [firstLoad, setFirstLoad] = useState(true) const [objects, setObjects] = useState<{ - [id: number]: GridCharacter | GridWeapon | GridSummon + [id: number]: GridCharacter | GridWeapon | GridSummon | undefined }>() const [filters, setFilters] = useState<{ [key: string]: number[] }>() const [open, setOpen] = useState(false)