Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Slider/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ type MarksProps = {
const MINIMUM_MARK_SPACING_PX = 16

const SliderMarks = memo(({ marks, thumbRef, min, max }: MarksProps) => {
// We seperate the container and measure divs so that our resize observer
// We separate the container and measure divs so that our resize observer
// does not fire when we adjust the height of the marks container.
const marksContainerRef = useRef<HTMLDivElement>(null)
const measureRef = useRef<HTMLDivElement>(null)
Expand Down