diff --git a/src/app/page.tsx b/src/app/page.tsx index eff1e38..aed6c9f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -154,7 +154,7 @@ export default function Home() { }; const queue = [...chunks]; - const active = []; + const active: Promise[] = []; while (queue.length > 0 || active.length > 0) { while (active.length < PARALLEL_UPLOADS && queue.length > 0) { const task = queue.shift()!;