fix: BlobPart[] type for chunks array

This commit is contained in:
2026-08-01 23:30:50 +03:00
parent e804e736fb
commit bb348967a0
+1 -1
View File
@@ -67,7 +67,7 @@ export default function CloudRevealSection() {
if (!res.ok) throw new Error('fetch failed')
const total = Number(res.headers.get('content-length') || 0)
const reader = res.body!.getReader()
const chunks: Uint8Array[] = []
const chunks: BlobPart[] = []
let received = 0
const pump = (): Promise<Blob> =>