From 27d46aa7253fea1abb4cc5bafaed12160a037b94 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 7 Sep 2025 19:29:31 -0500 Subject: [PATCH] fix missing semicolon the web linter was complaining --- web/src/components/player/HlsVideoPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/player/HlsVideoPlayer.tsx b/web/src/components/player/HlsVideoPlayer.tsx index 93f1da702..4b1bfe5ef 100644 --- a/web/src/components/player/HlsVideoPlayer.tsx +++ b/web/src/components/player/HlsVideoPlayer.tsx @@ -139,7 +139,7 @@ export default function HlsVideoPlayer({ if (hlsRef.current) { hlsRef.current.destroy(); } - } + }; }, [videoRef, hlsRef, useHlsCompat, currentSource]); // state handling