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) {