From 216a86812701fed5829ba1431ab659139af93968 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:19:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(todo):=20await=20async=20imp?= =?UTF-8?q?ortFromPngBytes=20call?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/todo/apps/web/src/lib/stores/spiral.svelte.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/todo/apps/web/src/lib/stores/spiral.svelte.ts b/apps/todo/apps/web/src/lib/stores/spiral.svelte.ts index 3970f0cb9..2374e4f46 100644 --- a/apps/todo/apps/web/src/lib/stores/spiral.svelte.ts +++ b/apps/todo/apps/web/src/lib/stores/spiral.svelte.ts @@ -215,7 +215,7 @@ class SpiralStore { const bytes = new Uint8Array(buffer); // Parse PNG and extract image - const image = importFromPngBytes(bytes); + const image = await importFromPngBytes(bytes); // Reconstruct database from image this.db = SpiralDB.fromImage(image, createTodoSchema());