From e6e11bb8f2ec9e1a1fd4cea969e2f30856473935 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Thu, 12 Mar 2026 11:01:15 -0700 Subject: [PATCH] Massive indexeddb optimization --- src/lib/indexeddb.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/indexeddb.ts b/src/lib/indexeddb.ts index 5da73eaf..c9401ff2 100644 --- a/src/lib/indexeddb.ts +++ b/src/lib/indexeddb.ts @@ -72,7 +72,7 @@ export class IDB { if (!connection) return [] - const tx = connection.transaction(table, "readwrite") + const tx = connection.transaction(table, "readonly") const store = tx.objectStore(table) const result = await store.getAll()