Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
KenanYusuf committed Jan 26, 2024
1 parent 9ad88a7 commit fa8fe8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/victory-brush-line/src/victory-brush-line.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ export class VictoryBrushLine<
}
return [];
},
onMouseUp(evt, targetProps) {
onMouseUp: (evt, targetProps) => {
const {
onBrushDomainChange,
brushDomain,
Expand Down Expand Up @@ -496,7 +496,7 @@ export class VictoryBrushLine<
},
];
},
onMouseLeave(evt, targetProps) {
onMouseLeave: (evt, targetProps) => {
const { brushDomain } = targetProps;
return [
{
Expand Down

0 comments on commit fa8fe8e

Please sign in to comment.