the same as before
All checks were successful
Bump deps (only minor versions) / ci (push) Successful in 19s

This commit is contained in:
0d0 2025-04-22 20:57:13 +02:00
parent 5e0071f15d
commit 3c5f7dc6c2
2 changed files with 1 additions and 2 deletions

View file

@ -15,7 +15,7 @@
<div <div
class="h-full bg-gradient-to-r from-green-400 to-green-600 transition-all duration-300" class="h-full bg-gradient-to-r from-green-400 to-green-600 transition-all duration-300"
style="width: {progress}%" style="width: {progress}%"
> </div> ></div>
</div> </div>
<p class="mt-2 text-center text-pink-400">{progress}%</p> <p class="mt-2 text-center text-pink-400">{progress}%</p>
</div> </div>

View file

@ -44,7 +44,6 @@
const chunks: Uint8Array[] = []; const chunks: Uint8Array[] = [];
let receivedLength = 0; let receivedLength = 0;
while (true) { while (true) {
const { done, value }: ReadableStreamReadResult<Uint8Array> = await reader!.read(); const { done, value }: ReadableStreamReadResult<Uint8Array> = await reader!.read();
if (done) break; if (done) break;