From c732d86018495468ec78bb45a1b620c3c9e4dad7 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 01:11:53 +0200 Subject: [PATCH] refactor: make syncVolumeUI private --- static/player/controls.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/player/controls.ts b/static/player/controls.ts index 4a7c3aa..e36ba1f 100644 --- a/static/player/controls.ts +++ b/static/player/controls.ts @@ -71,7 +71,7 @@ export const toggleFullscreen = (): void => { }; // syncs volume slider, underline, and mute icon -export const syncVolumeUI = (): void => { +const syncVolumeUI = (): void => { const { volumeRange, volumeUnderline } = getControls(); const value = state.elements.video.muted ? 0 : Math.round(state.elements.video.volume * 100); if (volumeRange) {