fix: adjust volume slider max to 100% (was 200%)

Changed volume slider max from 2 to 1 (0-100% range).
Default volume remains at 0.8 (80%).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-18 06:35:35 +01:00
parent 64902fa707
commit f42e5d4556

View File

@@ -226,7 +226,7 @@ export function SidePanel({
value={track.volume}
onChange={(value) => onUpdateTrack(track.id, { volume: value })}
min={0}
max={2}
max={1}
step={0.01}
/>
</div>