diff --git a/src/components/sound/range/range.tsx b/src/components/sound/range/range.tsx index e96d09b..249eef0 100644 --- a/src/components/sound/range/range.tsx +++ b/src/components/sound/range/range.tsx @@ -4,17 +4,16 @@ import styles from './range.module.css'; interface RangeProps { id: string; - label: string; } -export function Range({ id, label }: RangeProps) { +export function Range({ id }: RangeProps) { const setVolume = useSoundStore(state => state.setVolume); const volume = useSoundStore(state => state.sounds[id].volume); const isSelected = useSoundStore(state => state.sounds[id].isSelected); return (
{icon}
-

{label}

- +

{label}

+ ); }