From 8564659fc00ff08f32ccb9e534388885ea3f3326 Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 16 Jun 2026 18:19:28 -0700 Subject: [PATCH] fix(ag-grid-table): drop stale totals arg from useColDefs call The no-unused-vars cleanup removed the unused `totals` field from `UseColDefsProps`, but the call site in AgGridTableChart still passed it, breaking the tsc build (TS2353). Remove the now-invalid argument. Co-Authored-By: Claude Opus 4.8 --- .../plugins/plugin-chart-ag-grid-table/src/AgGridTableChart.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/superset-frontend/plugins/plugin-chart-ag-grid-table/src/AgGridTableChart.tsx b/superset-frontend/plugins/plugin-chart-ag-grid-table/src/AgGridTableChart.tsx index 24bc28e5322..9f078c0ad12 100644 --- a/superset-frontend/plugins/plugin-chart-ag-grid-table/src/AgGridTableChart.tsx +++ b/superset-frontend/plugins/plugin-chart-ag-grid-table/src/AgGridTableChart.tsx @@ -238,7 +238,6 @@ export default function TableChart( defaultAlignPN: alignPositiveNegative, showCellBars, colorPositiveNegative, - totals, columnColorFormatters, allowRearrangeColumns, basicColorFormatters,