From 39881b3f19fb3606d13fdef466c338ee31c921cc Mon Sep 17 00:00:00 2001 From: Ashraf Mohammed Date: Tue, 16 Jan 2024 20:16:08 +0530 Subject: [PATCH] lint --- src/Common/hooks/useFilters.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/hooks/useFilters.tsx b/src/Common/hooks/useFilters.tsx index 41fc91dfd5f..dd08a2442a5 100644 --- a/src/Common/hooks/useFilters.tsx +++ b/src/Common/hooks/useFilters.tsx @@ -37,11 +37,11 @@ export default function useFilters({ options?: setQueryParamsOptions ) => { const updatedQParams = { ...query }; - + for (const param of cacheBlacklist) { delete updatedQParams[param]; } - + _setQueryParams(query, options); updateFiltersCache(updatedQParams); };