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()