chore: fix frontend lint

This commit is contained in:
Oleg Lobanov
2024-08-18 13:51:16 +02:00
parent 090272e3b7
commit 83898d616f
9 changed files with 53 additions and 50 deletions

View File

@@ -61,7 +61,7 @@ export async function upload(
fileData.hasStarted = true;
fileData.lastProgressTimestamp = Date.now();
fileData.interval = setInterval(() => {
fileData.interval = window.setInterval(() => {
calcProgress(filePath);
}, SPEED_UPDATE_INTERVAL);
}