From e90ff3d373888b98113a248d50a3a30a7c0f1c1e Mon Sep 17 00:00:00 2001 From: Aramis Date: Fri, 26 Jan 2024 11:55:06 -0500 Subject: [PATCH] remove `textSearch` from output state Signed-off-by: Aramis --- plugins/catalog-react/src/hooks/useEntityListProvider.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/catalog-react/src/hooks/useEntityListProvider.tsx b/plugins/catalog-react/src/hooks/useEntityListProvider.tsx index 68b3fff735..abb366a568 100644 --- a/plugins/catalog-react/src/hooks/useEntityListProvider.tsx +++ b/plugins/catalog-react/src/hooks/useEntityListProvider.tsx @@ -124,7 +124,6 @@ type OutputState = { entities: Entity[]; backendEntities: Entity[]; pageInfo?: QueryEntitiesResponse['pageInfo']; - textSearch?: string; }; /** @@ -244,7 +243,6 @@ export const EntityListProvider = ( backendEntities: response.items, entities: response.items.filter(entityFilter), pageInfo: response.pageInfo, - textSearch: requestedFilters.text?.value, }); } }