@dereekb/dbx-firebase 7.0.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2321,7 +2321,7 @@ class AbstractDbxFirebaseDocumentStore extends LockSetComponentStore {
2321
2321
  document = this.firestoreCollectionLike$.pipe(map((x) => x.documentAccessor().loadDocumentForKey(key)));
2322
2322
  }
2323
2323
  else if (id) {
2324
- document = this.firestoreCollection$.pipe(map((x) => x.documentAccessor().loadDocumentForPath(id)));
2324
+ document = this.firestoreCollection$.pipe(map((x) => x.documentAccessor().loadDocumentForId(id)));
2325
2325
  }
2326
2326
  else {
2327
2327
  document = of(undefined);