From bb348967a0f6cc835f1b0782e630f9f50883e229 Mon Sep 17 00:00:00 2001 From: Mustafa Date: Sat, 1 Aug 2026 23:30:50 +0300 Subject: [PATCH] fix: BlobPart[] type for chunks array --- components/sections/CloudRevealSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/sections/CloudRevealSection.tsx b/components/sections/CloudRevealSection.tsx index 31abc46..1a217d4 100644 --- a/components/sections/CloudRevealSection.tsx +++ b/components/sections/CloudRevealSection.tsx @@ -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 =>