merge: fix storybook build
* [package][xs]: remove parameter that was not being used * [package][xs]: remove import that's breaking the build * [package][xs]: trying to fix build error on Vercel
This commit is contained in:
@@ -17,7 +17,7 @@ export function LineChart({
|
||||
}: LineChartProps) {
|
||||
var tmp = data;
|
||||
if (Array.isArray(data)) {
|
||||
tmp = data.map((r, i) => {
|
||||
tmp = data.map((r) => {
|
||||
return { x: r[0], y: r[1] };
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
export * from "./components/Table";
|
||||
export * from "./components/LineChart";
|
||||
export * from "./components/Vega";
|
||||
export * from "./components/VegaLite";
|
||||
export * from "./components/DataRichDocument";
|
||||
export * from "./components/VegaLite";
|
||||
Reference in New Issue
Block a user