diff --git a/frontend/src/components/tracing/tracing.tsx b/frontend/src/components/tracing/tracing.tsx index 4a9761309ae..317e1484735 100644 --- a/frontend/src/components/tracing/tracing.tsx +++ b/frontend/src/components/tracing/tracing.tsx @@ -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;