diff --git a/website/src/pages/funnel/index.tsx b/website/src/pages/funnel/index.tsx index 99880960e..35d290597 100644 --- a/website/src/pages/funnel/index.tsx +++ b/website/src/pages/funnel/index.tsx @@ -1,4 +1,5 @@ import React from 'react' +import omit from 'lodash/omit' import merge from 'lodash/merge' import { ResponsiveFunnel, svgDefaultProps } from '@nivo/funnel' import { ComponentTemplate } from '../../components/components/ComponentTemplate' @@ -84,7 +85,7 @@ const Funnel = () => ( type: 'click', label: `[part] id: ${part.data.id}, value: ${part.formattedValue}`, color: part.color, - data: part.data, + data: omit(part, ['points', 'areaPoints', 'borderPoints']), }) }} />