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 96f43b5 commit 4fb0342Copy full SHA for 4fb0342
packages/firestore/src/local/simple_db.ts
@@ -124,6 +124,7 @@ export class SimpleDbTransaction {
124
maybeCommit(): void {
125
// If the browser supports V3 IndexedDB, we invoke commit() explicitly to
126
// speed up index DB processing if the event loop remains blocks.
127
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
128
const maybeV3IndexedDb = this.transaction as any;
129
if (typeof maybeV3IndexedDb.commit === 'function') {
130
maybeV3IndexedDb.commit();
0 commit comments