From a99fae861eaab6efe01144466465330cea54d765 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 11 Sep 2025 12:10:48 +0300 Subject: [PATCH] fix type of uint8array --- src/lib/media/manip.web.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/media/manip.web.ts b/src/lib/media/manip.web.ts index d0524e2d27..1f6d90ce34 100644 --- a/src/lib/media/manip.web.ts +++ b/src/lib/media/manip.web.ts @@ -157,7 +157,7 @@ function createResizedImage( export async function saveBytesToDisk( filename: string, - bytes: Uint8Array, + bytes: Uint8Array, type: string, ) { const blob = new Blob([bytes], {type})