pull/1734/head
Audric Ackermann 4 years ago
parent 15aa6b5ef9
commit 5e55c2cfab
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -22,12 +22,12 @@ type Props = {
};
export const SessionSettingListItem = (props: Props) => {
const handleSlider = (value: any) => {
const handleSlider = (valueToForward: any) => {
if (props.onSliderChange) {
props.onSliderChange(value);
props.onSliderChange(valueToForward);
}
setSliderValue(value);
setSliderValue(valueToForward);
};
const [sliderValue, setSliderValue] = useState(null);

Loading…
Cancel
Save