From 1a0fd50081686333e780a96e6da6a4c75355793f Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 10 Feb 2024 06:05:41 -0600 Subject: [PATCH] Update web/src/components/player/JSMpegPlayer.tsx --- web/src/components/player/JSMpegPlayer.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/components/player/JSMpegPlayer.tsx b/web/src/components/player/JSMpegPlayer.tsx index 9b5905a10..13a898fa2 100644 --- a/web/src/components/player/JSMpegPlayer.tsx +++ b/web/src/components/player/JSMpegPlayer.tsx @@ -37,7 +37,6 @@ export default function JSMpegPlayer({ const scaledHeight = useMemo(() => { const scaledHeight = Math.floor(availableWidth / aspectRatio); const finalHeight = Math.min(scaledHeight, height); - console.log(`${containerWidth} / ${aspectRatio} -< ${containerHeight}`); if (containerHeight < finalHeight) { return containerHeight;