Remove step prop from VolumeSlider component (#944)

Removed the `step` prop from VolumeSlider to use the generic Slider component's default `0.01` step size.
This commit is contained in:
Scott Humphries 2026-03-14 01:28:29 -05:00 committed by GitHub
parent cbdb4983cd
commit e3a040cd97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,6 @@ export const VolumeSlider: React.FC<{ disabled?: boolean }> = ({
}
min={0}
max={1}
step={0.1}
label={t("settings.sound.volume.title")}
description={t("settings.sound.volume.description")}
descriptionMode="tooltip"