From 2aaa413d6dc9468af33e1af468cf77a92fecadb7 Mon Sep 17 00:00:00 2001 From: balajisoundar Date: Tue, 4 Oct 2022 17:08:02 +0530 Subject: [PATCH] chore: Remove the unnecessary error log from the derived property function (#17290) --- app/client/src/widgets/TableWidgetV2/widget/derived.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/app/client/src/widgets/TableWidgetV2/widget/derived.js b/app/client/src/widgets/TableWidgetV2/widget/derived.js index 6413cf05ca..53fce2c5bb 100644 --- a/app/client/src/widgets/TableWidgetV2/widget/derived.js +++ b/app/client/src/widgets/TableWidgetV2/widget/derived.js @@ -1,5 +1,3 @@ -/* eslint-disable no-console */ - /* eslint-disable @typescript-eslint/no-unused-vars*/ export default { getSelectedRow: (props, moment, _) => { @@ -288,11 +286,7 @@ export default { try { computedValues = JSON.parse(column.computedValue); } catch (e) { - console.error( - e, - "Error parsing column computedValue: ", - column.computedValue, - ); + /* do nothing */ } } else if (_.isArray(column.computedValue)) { computedValues = column.computedValue;