react 19.1.0-canary-bb9a24d9-20250130 → 19.1.0-canary-a4b2d0d5-20250203

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.
@@ -487,7 +487,8 @@
487
487
  oldElement._owner,
488
488
  oldElement.props
489
489
  );
490
- newKey._store.validated = oldElement._store.validated;
490
+ oldElement._store &&
491
+ (newKey._store.validated = oldElement._store.validated);
491
492
  return newKey;
492
493
  }
493
494
  function validateChildKeys(node, parentType) {
@@ -1521,7 +1522,7 @@
1521
1522
  exports.useTransition = function () {
1522
1523
  return resolveDispatcher().useTransition();
1523
1524
  };
1524
- exports.version = "19.1.0-canary-bb9a24d9-20250130";
1525
+ exports.version = "19.1.0-canary-a4b2d0d5-20250203";
1525
1526
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1526
1527
  "function" ===
1527
1528
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -541,4 +541,4 @@ exports.useSyncExternalStore = function (
541
541
  exports.useTransition = function () {
542
542
  return ReactSharedInternals.H.useTransition();
543
543
  };
544
- exports.version = "19.1.0-canary-bb9a24d9-20250130";
544
+ exports.version = "19.1.0-canary-a4b2d0d5-20250203";
@@ -449,7 +449,8 @@
449
449
  oldElement._owner,
450
450
  oldElement.props
451
451
  );
452
- newKey._store.validated = oldElement._store.validated;
452
+ oldElement._store &&
453
+ (newKey._store.validated = oldElement._store.validated);
453
454
  return newKey;
454
455
  }
455
456
  function validateChildKeys(node, parentType) {
@@ -1110,5 +1111,5 @@
1110
1111
  exports.useMemo = function (create, deps) {
1111
1112
  return resolveDispatcher().useMemo(create, deps);
1112
1113
  };
1113
- exports.version = "19.1.0-canary-bb9a24d9-20250130";
1114
+ exports.version = "19.1.0-canary-a4b2d0d5-20250203";
1114
1115
  })();
@@ -423,4 +423,4 @@ exports.useId = function () {
423
423
  exports.useMemo = function (create, deps) {
424
424
  return ReactSharedInternals.H.useMemo(create, deps);
425
425
  };
426
- exports.version = "19.1.0-canary-bb9a24d9-20250130";
426
+ exports.version = "19.1.0-canary-a4b2d0d5-20250203";
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "react"
6
6
  ],
7
- "version": "19.1.0-canary-bb9a24d9-20250130",
7
+ "version": "19.1.0-canary-a4b2d0d5-20250203",
8
8
  "homepage": "https://react.dev/",
9
9
  "bugs": "https://github.com/facebook/react/issues",
10
10
  "license": "MIT",