diff --git a/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx b/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx index d23b96585..c7549855a 100644 --- a/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx +++ b/frontend/app/components/Dashboard/components/WidgetChart/WidgetChart.tsx @@ -64,7 +64,7 @@ function WidgetChart(props: Props) { const prevMetricRef = useRef(); const isMounted = useIsMounted(); const [compData, setCompData] = useState(null); - const [enabledRows, setEnabledRows] = useState([]); + const [enabledRows, setEnabledRows] = useState([]); const isTableWidget = _metric.metricType === 'table' && _metric.viewType === 'table'; const isPieChart = @@ -524,7 +524,6 @@ function WidgetChart(props: Props) {