Skip to content

Commit a6fef04

Browse files
[AUTOMATED]: Prettier Code Styling
1 parent e203796 commit a6fef04

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/firestore/src/core/sync_engine.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -443,23 +443,23 @@ export class SyncEngine implements RemoteSyncer, SharedClientStateSyncer {
443443
// Since this is a limbo resolution lookup, it's for a single document
444444
// and it could be added, modified, or removed, but not a combination.
445445
assert(
446-
targetChange.addedDocuments.size +
446+
targetChange.addedDocuments.size +
447447
targetChange.modifiedDocuments.size +
448448
targetChange.removedDocuments.size <=
449449
1,
450-
'Limbo resolution for single document contains multiple changes.'
450+
'Limbo resolution for single document contains multiple changes.'
451451
);
452452
if (targetChange.addedDocuments.size > 0) {
453453
limboResolution.receivedDocument = true;
454454
} else if (targetChange.modifiedDocuments.size > 0) {
455455
assert(
456-
limboResolution.receivedDocument,
457-
'Received change for limbo target document without add.'
456+
limboResolution.receivedDocument,
457+
'Received change for limbo target document without add.'
458458
);
459459
} else if (targetChange.removedDocuments.size > 0) {
460460
assert(
461-
limboResolution.receivedDocument,
462-
'Received remove for limbo target document without add.'
461+
limboResolution.receivedDocument,
462+
'Received remove for limbo target document without add.'
463463
);
464464
limboResolution.receivedDocument = false;
465465
} else {

0 commit comments

Comments
 (0)