From 2e325aa278d562b579fe9f0e61cfd87736c7d246 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 20 Sep 2024 10:28:03 -0500 Subject: [PATCH] exclude query from filtertype --- web/src/types/search.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/types/search.ts b/web/src/types/search.ts index 54cd7c948..c83e1aed2 100644 --- a/web/src/types/search.ts +++ b/web/src/types/search.ts @@ -56,7 +56,7 @@ export type SearchQueryParams = { }; export type SearchQuery = [string, SearchQueryParams] | null; -export type FilterType = keyof SearchFilter; +export type FilterType = Exclude; export type SavedSearchQuery = { name: string;