[bugfix] Config Page: VR Tab. Fix the error "Failed prop type: Invalid prop valueLabelFormat supplied to ForwardRef(Slider2), expected one of type [function, string]."

It should've put strings but I put number (init value 0)
This commit is contained in:
Sakamoto Shiina
2024-10-23 17:56:17 +09:00
parent 69953eec1b
commit 984f989646

View File

@@ -32,7 +32,7 @@ export const Slider = (props) => {
marks={props.marks}
track={props.track}
orientation={props.orientation}
valueLabelFormat={props.valueLabelFormat ? props.valueLabelFormat : null}
valueLabelFormat={`${props.valueLabelFormat ? props.valueLabelFormat : props.variable}`}
sx={{
color: baseColor,
"& .MuiSlider-thumb": {