From b53b14ae5f8face530630f3656ebcd474fb9e05e Mon Sep 17 00:00:00 2001 From: Delirium Date: Mon, 7 Oct 2024 16:45:17 +0200 Subject: [PATCH] rm console line (#2637) --- .../app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx index ed79c433b..c433a9f54 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx @@ -102,7 +102,6 @@ function DropdownAudioPlayer({ const file = files.find((f) => f.url === key); if (file) { const targetTime = (timeMs + delta * 1000 - file.start) / 1000; - console.log(targetTime, audio.currentTime, timeMs) const fileLength = fileLengths.current[key]; if (targetTime < 0 || (fileLength && targetTime > fileLength)) { audio.pause();