From 18ac7ad08454475f71fd5142b09ad150865ba41a 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 a4b31cd4755c..9e82efdee6dc 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 }),