From 6cfa55db11b110c194114dfdcdf8852b5b7ca802 Mon Sep 17 00:00:00 2001 From: Simona Domnisoru Date: Mon, 7 Oct 2024 17:06:55 +0200 Subject: [PATCH] chore: remove console --- .../teiViewEpics/helpers/getListDataCommon/getSubvalues.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core_modules/capture-core/components/WorkingLists/TeiWorkingLists/epics/teiViewEpics/helpers/getListDataCommon/getSubvalues.js b/src/core_modules/capture-core/components/WorkingLists/TeiWorkingLists/epics/teiViewEpics/helpers/getListDataCommon/getSubvalues.js index d063426b77..0d0c3189a7 100644 --- a/src/core_modules/capture-core/components/WorkingLists/TeiWorkingLists/epics/teiViewEpics/helpers/getListDataCommon/getSubvalues.js +++ b/src/core_modules/capture-core/components/WorkingLists/TeiWorkingLists/epics/teiViewEpics/helpers/getListDataCommon/getSubvalues.js @@ -186,9 +186,7 @@ const getSubvaluesPlain = (querySingleResource: QuerySingleResource, absoluteApi .filter(({ type }) => subvalueGetterByType[type]); const subvalueKeysByType = getSubvalueKeysByType(clientData, columnsWithSubvalues); const subvaluesByType = await getSubvaluesByType(subvalueKeysByType); - console.log(subvaluesByType); const clientDataWithSubValues = addSubvalues(clientData, subvaluesByType, columnsWithSubvalues); - console.log(clientDataWithSubValues); return cleanClientData(clientDataWithSubValues); }; };