ui: rm accidental console log

This commit is contained in:
nick-delirium 2024-10-07 18:03:28 +02:00
parent 6689b89d0c
commit d94e2f0250
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

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