From 46e136a9e44a95cba17aa2999c0f649c4fe273b7 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Fri, 29 Aug 2025 09:29:48 +0200 Subject: [PATCH] - removed console.log; --- .../CriteriaTable/RenderTable/components/LastRowCell/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/FormField/components/CriteriaTable/RenderTable/components/LastRowCell/index.js b/src/components/FormField/components/CriteriaTable/RenderTable/components/LastRowCell/index.js index e4a7f75..1c2dcc2 100644 --- a/src/components/FormField/components/CriteriaTable/RenderTable/components/LastRowCell/index.js +++ b/src/components/FormField/components/CriteriaTable/RenderTable/components/LastRowCell/index.js @@ -3,8 +3,6 @@ import getNumberFormatted from '../../../../../../../helpers/getNumberFormatted' const LastRowCell = ({columnId, lastRowCfg, columnMeta = {}, tableValue = []}) => { const cellData = head(lastRowCfg.filter(o => !isNil(o[columnId]))); - console.log('LastRowCell Rendered', {columnId, lastRowCfg, columnMeta, tableValue}); - console.log('cellData', cellData) let cellValue = cellData[columnId]; if (columnMeta.enableFormula) {