Skip to content

Commit

Permalink
remove unnecessary hover
Browse files Browse the repository at this point in the history
  • Loading branch information
skokenes committed Oct 31, 2024
1 parent f1a9b08 commit c30d898
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/malloy-render/src/component/vega/vega-chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,7 @@ export function VegaChart(props: VegaChartProps) {
const _view = untrack(() => view());
if (_view) _view.finalize();

const nextView = new View(props.runtime)
.initialize(el)
.hover()
.renderer('svg');
const nextView = new View(props.runtime).initialize(el).renderer('svg');

// This signal is needed before running the view for the first time
setSignalIfExists(nextView, 'malloyExplore', props.explore);
Expand Down

0 comments on commit c30d898

Please sign in to comment.