Skip to content

Commit

Permalink
fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
jul-lam committed Feb 26, 2025
1 parent f2aa217 commit f927e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/slider/slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ export class Slider {
private readonly tooltipRef = makeRef<HTMLIxTooltipElement>();

get tooltip() {
return this.tooltipRef.current as HTMLIxTooltipElement;
return this.tooltipRef.current;
}

get pseudoThumb() {
return this.thumbRef.current as HTMLDivElement;
return this.thumbRef.current;
}

get slider() {
Expand Down

0 comments on commit f927e17

Please sign in to comment.