We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d59567 commit 8ddc7e3Copy full SHA for 8ddc7e3
packages/app/src/indexeddb.ts
@@ -70,9 +70,7 @@ export async function readHeartbeatsFromIndexedDB(
70
try {
71
const db = await getDbPromise();
72
const tx = db.transaction(STORE_NAME);
73
- const result = await tx
74
- .objectStore(STORE_NAME)
75
- .get(computeKey(app));
+ const result = await tx.objectStore(STORE_NAME).get(computeKey(app));
76
// We already have the value but tx.done can throw,
77
// so we need to await it here to catch errors
78
await tx.done;
0 commit comments