Remove prefix from formState option (#27460)

`useFormState` is now in canary.

DiffTrain build for [44d40a077a](https://github.com/facebook/react/commit/44d40a077ae91bbf5e18a95b90d8a15c2ec978ca)
This commit is contained in:
acdlite
2023-10-04 19:22:26 +00:00
parent b0d9923419
commit 38425e9212
6 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -1 +1 @@
bfefb228422f7264a29b3a6b98ec95e05925e80e
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca
+1 -1
View File
@@ -615,4 +615,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactCurrentDispatcher.current.useTransition();
};
exports.version = "18.3.0-www-modern-9af4f539";
exports.version = "18.3.0-www-modern-40cd18cd";
@@ -34006,7 +34006,7 @@ function createFiberRoot(
return root;
}
var ReactVersion = "18.3.0-www-classic-41a19799";
var ReactVersion = "18.3.0-www-classic-994d0d3c";
function createPortal$1(
children,
@@ -45546,8 +45546,8 @@ function hydrateRoot$1(container, initialChildren, options) {
}
if (enableAsyncActions && enableFormActions) {
if (options.experimental_formState !== undefined) {
formState = options.experimental_formState;
if (options.formState !== undefined) {
formState = options.formState;
}
}
}
+3 -3
View File
@@ -33851,7 +33851,7 @@ function createFiberRoot(
return root;
}
var ReactVersion = "18.3.0-www-modern-47efbea5";
var ReactVersion = "18.3.0-www-modern-cb7c50df";
function createPortal$1(
children,
@@ -45048,8 +45048,8 @@ function hydrateRoot$1(container, initialChildren, options) {
}
if (enableAsyncActions && enableFormActions) {
if (options.experimental_formState !== undefined) {
formState = options.experimental_formState;
if (options.formState !== undefined) {
formState = options.formState;
}
}
}
@@ -34623,7 +34623,7 @@ function createFiberRoot(
return root;
}
var ReactVersion = "18.3.0-www-classic-eb6d9c3d";
var ReactVersion = "18.3.0-www-classic-2ae60193";
function createPortal$1(
children,
@@ -46295,8 +46295,8 @@ function hydrateRoot$1(container, initialChildren, options) {
}
if (enableAsyncActions && enableFormActions) {
if (options.experimental_formState !== undefined) {
formState = options.experimental_formState;
if (options.formState !== undefined) {
formState = options.formState;
}
}
}
@@ -34468,7 +34468,7 @@ function createFiberRoot(
return root;
}
var ReactVersion = "18.3.0-www-modern-9af4f539";
var ReactVersion = "18.3.0-www-modern-40cd18cd";
function createPortal$1(
children,
@@ -45797,8 +45797,8 @@ function hydrateRoot$1(container, initialChildren, options) {
}
if (enableAsyncActions && enableFormActions) {
if (options.experimental_formState !== undefined) {
formState = options.experimental_formState;
if (options.formState !== undefined) {
formState = options.formState;
}
}
}