rm console line (#2637)

This commit is contained in:
Delirium 2024-10-07 16:45:17 +02:00 committed by GitHub
parent e3f6a8fadc
commit b53b14ae5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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