File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ export class SimpleDbTransaction {
125125 // If the browser supports V3 indexedDb, invoke commit() explicitly to
126126 // speed up index DB processing if the event loop remains blocks.
127127 const maybeV3IndexedDb = this . transaction as any ;
128- if ( typeof maybeV3IndexedDb . commit === " function" ) {
129- throw new Error ( " COMMITTED" ) ;
128+ if ( typeof maybeV3IndexedDb . commit === ' function' ) {
129+ throw new Error ( ' COMMITTED' ) ;
130130 maybeV3IndexedDb . commit ( ) ;
131131 }
132132 }
@@ -410,7 +410,7 @@ export class SimpleDb {
410410 objectStores
411411 ) ;
412412 const transactionFnResult = transactionFn ( transaction )
413- . next ( result => {
413+ . next ( result => {
414414 transaction . maybeCommit ( ) ;
415415 return result ;
416416 } )
You can’t perform that action at this time.
0 commit comments