Skip to content

Commit

Permalink
tidy: revert back to using m.Vega (#3287)
Browse files Browse the repository at this point in the history
  • Loading branch information
Light2Dark authored Dec 24, 2024
1 parent 3264723 commit 95578ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/tracing/tracing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ export const Tracing: React.FC = () => {
);
};

// Using vega instead of vegaLite as some parts of the spec get interpreted as vega & will throw warnings
const LazyVega = React.lazy(() =>
import("react-vega").then((m) => ({ default: m.VegaLite })),
import("react-vega").then((m) => ({ default: m.Vega })),
);
interface ChartProps {
className?: string;
Expand Down

0 comments on commit 95578ea

Please sign in to comment.