From fc83056f8eb01e3bba0ba2a7d0598b23da2a0657 Mon Sep 17 00:00:00 2001 From: Ben Schmidt Date: Tue, 4 Jun 2024 15:39:38 -0400 Subject: [PATCH] fix linting --- src/interaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction.ts b/src/interaction.ts index df46d7aaf..70550a577 100644 --- a/src/interaction.ts +++ b/src/interaction.ts @@ -181,7 +181,7 @@ export class Zoom { } set_highlit_points(data: StructRowProxy[]) { - const { x_, y_, x, y } = this.scales(); + const { x_, y_ } = this.scales(); const xdim = this.scatterplot.dim('x') as PositionalAesthetic; const ydim = this.scatterplot.dim('y') as PositionalAesthetic; this.scatterplot.highlit_point_change(data, this.scatterplot);