Skip to content

Commit 7b2be5f

Browse files
author
Nick Jansen
committed
feat: fix types
1 parent 6c328d6 commit 7b2be5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/shared/charts/src/hooks/usePlotChartDataSeries.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { executeAction } from "@mendix/pluggable-widgets-commons";
77
import { MendixChartDataProps } from "../components/Chart";
88

99
type PlotChartDataPoints = {
10-
x: Array<Datum>;
11-
y: Array<Datum>;
10+
x: Datum[];
11+
y: Datum[];
1212
hovertext: string[] | undefined;
1313
hoverinfo: PlotData["hoverinfo"];
1414
// We want this optional.

0 commit comments

Comments
 (0)