We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bb1e80 commit 930ca10Copy full SHA for 930ca10
packages/firestore/src/local/local_store_impl.ts
@@ -875,6 +875,10 @@ export async function localStoreNotifyLocalViewChanges(
875
);
876
localStoreImpl.targetDataByTarget =
877
localStoreImpl.targetDataByTarget.insert(targetId, updatedTargetData);
878
+
879
+ // TODO(b/272564316): Apply the optimization done on other platforms.
880
+ // This is a problem for web because saving the updated targetData from
881
+ // non-primary client conflicts with what primary client saved.
882
}
883
884
0 commit comments