This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new d4bd20ffb4 fix: d3.count doesn't exist (#31848)
d4bd20ffb4 is described below

commit d4bd20ffb49dadec3a68a3281d626f301dcb3cb2
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Tue Jan 14 16:54:03 2025 -0800

    fix: d3.count doesn't exist (#31848)
---
 .../plugins/legacy-preset-chart-deckgl/src/layers/common.tsx            | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/common.tsx 
b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/common.tsx
index 111614a766..4185b38167 100644
--- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/common.tsx
+++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/common.tsx
@@ -20,7 +20,6 @@ import { ReactNode } from 'react';
 import {
   ascending as d3ascending,
   quantile as d3quantile,
-  count as d3count,
   sum as d3sum,
   mean as d3mean,
   min as d3min,
@@ -90,7 +89,6 @@ const percentiles = {
 /* Supported d3-array functions */
 const d3functions: Record<string, any> = {
   sum: d3sum,
-  count: d3count,
   min: d3min,
   max: d3max,
   mean: d3mean,

Reply via email to