From f740a713fca090a0a80bc81e535d8855878f96b5 Mon Sep 17 00:00:00 2001 From: Ricardo Garim Date: Mon, 14 Oct 2024 20:31:50 -0300 Subject: [PATCH] chore: remove fields query param from get livechat tags --- apps/meteor/client/omnichannel/tags/TagsTable.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/meteor/client/omnichannel/tags/TagsTable.tsx b/apps/meteor/client/omnichannel/tags/TagsTable.tsx index a4b31cd4755c3..9e82efdee6dc6 100644 --- a/apps/meteor/client/omnichannel/tags/TagsTable.tsx +++ b/apps/meteor/client/omnichannel/tags/TagsTable.tsx @@ -35,7 +35,6 @@ const TagsTable = () => { const query = useMemo( () => ({ viewAll: 'true' as const, - fields: JSON.stringify({ name: 1 }), text: debouncedFilter, sort: JSON.stringify({ [sortBy]: sortDirection === 'asc' ? 1 : -1 }), ...(itemsPerPage && { count: itemsPerPage }),