From 91170770af0f381a3b73f862db43f7026bac6ab9 Mon Sep 17 00:00:00 2001 From: Ricardo Garim Date: Tue, 15 Oct 2024 23:29:29 -0300 Subject: [PATCH] chore!: make livechat units table component stop to use fields query param (#33576) --- apps/meteor/client/omnichannel/units/UnitsTable.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/meteor/client/omnichannel/units/UnitsTable.tsx b/apps/meteor/client/omnichannel/units/UnitsTable.tsx index 93734acb8de0d..2797e9287e8b3 100644 --- a/apps/meteor/client/omnichannel/units/UnitsTable.tsx +++ b/apps/meteor/client/omnichannel/units/UnitsTable.tsx @@ -30,7 +30,6 @@ const UnitsTable = () => { const query = useMemo( () => ({ - fields: JSON.stringify({ name: 1 }), text: debouncedFilter, sort: JSON.stringify({ [sortBy]: sortDirection === 'asc' ? 1 : -1 }), ...(itemsPerPage && { count: itemsPerPage }),