From 7f727895052f1a9cddcd7d6a8e36661ba026e5a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemek=20Wi=C4=99ch?= Date: Mon, 18 May 2026 23:28:58 +0200 Subject: [PATCH] Address TS types #282 --- src/datasource/load_data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datasource/load_data.ts b/src/datasource/load_data.ts index 2544f4b..67bc278 100644 --- a/src/datasource/load_data.ts +++ b/src/datasource/load_data.ts @@ -93,7 +93,7 @@ async function loadGedzip( const normalizedKey = fileName.replace(/\\/g, '/').toLowerCase(); images.set( normalizedKey, - URL.createObjectURL(new Blob([unzipped[fileName]])), + URL.createObjectURL(new Blob([unzipped[fileName] as BlobPart])), ); } }