Massive indexeddb optimization

This commit is contained in:
Jon Staab
2026-03-12 11:01:15 -07:00
parent 0e65e834da
commit e6e11bb8f2
+1 -1
View File
@@ -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()