”step” wasn’t working on range type fields for anything other than 1.
Claude noted:
The step prop wasn’t being forwarded to the Slider component at RangeInput.tsx:59. One line fix — it will now step by 10 as configured.
min={data.min}
max={data.max}
step={data.step}
value={[value || 0]}
”step” wasn’t working on range type fields for anything other than 1.
Claude noted:
The step prop wasn’t being forwarded to the Slider component at RangeInput.tsx:59. One line fix — it will now step by 10 as configured.
min={data.min}
max={data.max}
step={data.step}
value={[value || 0]}