react-native-onyx 1.0.88 → 1.0.89

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.
@@ -2264,7 +2264,8 @@ const provider = {
2264
2264
  * @return {Promise<void>}
2265
2265
  */
2266
2266
  mergeItem(key, _changes, modifiedData) {
2267
- return provider.multiMerge([[key, modifiedData]]);
2267
+ // Since Onyx also merged the existing value with the changes, we can just set the value directly
2268
+ return provider.setItem(key, modifiedData);
2268
2269
  },
2269
2270
 
2270
2271
  /**