diff --git a/src/components/inputs/reactHookForm/numbers/SliderInput.tsx b/src/components/inputs/reactHookForm/numbers/SliderInput.tsx index 73c7311a..c22cdf2b 100644 --- a/src/components/inputs/reactHookForm/numbers/SliderInput.tsx +++ b/src/components/inputs/reactHookForm/numbers/SliderInput.tsx @@ -22,6 +22,7 @@ export function SliderInput({ size = 'small', marks, valueLabelDisplay, + valueLabelFormat, onValueChanged = identity, }: SliderInputProps) { const { @@ -48,6 +49,7 @@ export function SliderInput({ onChange={handleValueChange} marks={marks} valueLabelDisplay={valueLabelDisplay} + valueLabelFormat={valueLabelFormat} /> ); }