Remove unused testing variable

This commit is contained in:
finsofblueimnotyou 2025-02-12 20:06:08 -05:00 committed by GitHub
parent 23e411e78c
commit 60cff997b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -311,7 +311,6 @@ function PlayBar({ playing, setPlaying }: PlayBarProps) {
};
const wheelVolume = (event: React.WheelEvent<HTMLDivElement>) => {
let x = volumeSlider.value;
if (event.deltaY < 0) {
volumeSlider.value++;
} else {