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;