@reactables/forms 2.0.0-beta.5 → 2.0.0-beta.6

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.
package/dist/index.js CHANGED
@@ -386,7 +386,7 @@ var checkKeys = function (oldObj, newObj) {
386
386
  var oldKeys = Object.keys(oldObj).slice().sort().join();
387
387
  var newKeys = Object.keys(newObj).slice().sort().join();
388
388
  if (oldKeys !== newKeys) {
389
- console.warn("You are trying to update multiple controls but they key don't match. It is recommended your keys match. Old keys: ".concat(oldKeys, ". New Keys: ").concat(newKeys, " "));
389
+ console.warn("You are trying to update multiple controls but the keys don't match. It is recommended your keys match. Old keys: ".concat(oldKeys, ". New Keys: ").concat(newKeys, " "));
390
390
  }
391
391
  };
392
392
  var updateDescendantValues = function (form, _a, providers) {