rm console line (#2637)

This commit is contained in:
Delirium 2024-08-16 19:06:29 +01:00 committed by rjshrjndrn
parent 31be67cddf
commit 8f449bb197

View file

@ -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();