Skip to content

Commit

Permalink
Updating for ESlint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Graule committed Jul 17, 2024
1 parent 535cc08 commit 7cdad32
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import React, { useState, useEffect, useRef } from "react";
export interface ScrollBarThumbProps {
scrollBarThumbWidth: number;
svgContainerRect: { topLeft: number; width: number; height: number };
// eslint-disable-next-line no-unused-vars
/* eslint-disable no-unused-vars*/
handleChartScroll: (
thumbX: number,
svgContainerRect: ScrollBarThumbProps["svgContainerRect"],
) => void;
/* eslint-enable no-unused-vars*/
}

const ScrollBarThumb: React.FC<ScrollBarThumbProps> = ({
Expand Down

0 comments on commit 7cdad32

Please sign in to comment.