Skip to content

Commit 38425e9

Browse files
committed
Remove prefix from formState option (#27460)
`useFormState` is now in canary. DiffTrain build for [44d40a0](44d40a0)
1 parent b0d9923 commit 38425e9

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bfefb228422f7264a29b3a6b98ec95e05925e80e
1+
44d40a077ae91bbf5e18a95b90d8a15c2ec978ca

compiled/facebook-www/React-prod.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,4 +615,4 @@ exports.useSyncExternalStore = function (
615615
exports.useTransition = function () {
616616
return ReactCurrentDispatcher.current.useTransition();
617617
};
618-
exports.version = "18.3.0-www-modern-9af4f539";
618+
exports.version = "18.3.0-www-modern-40cd18cd";

compiled/facebook-www/ReactDOM-dev.classic.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34006,7 +34006,7 @@ function createFiberRoot(
3400634006
return root;
3400734007
}
3400834008

34009-
var ReactVersion = "18.3.0-www-classic-41a19799";
34009+
var ReactVersion = "18.3.0-www-classic-994d0d3c";
3401034010

3401134011
function createPortal$1(
3401234012
children,
@@ -45546,8 +45546,8 @@ function hydrateRoot$1(container, initialChildren, options) {
4554645546
}
4554745547

4554845548
if (enableAsyncActions && enableFormActions) {
45549-
if (options.experimental_formState !== undefined) {
45550-
formState = options.experimental_formState;
45549+
if (options.formState !== undefined) {
45550+
formState = options.formState;
4555145551
}
4555245552
}
4555345553
}

compiled/facebook-www/ReactDOM-dev.modern.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33851,7 +33851,7 @@ function createFiberRoot(
3385133851
return root;
3385233852
}
3385333853

33854-
var ReactVersion = "18.3.0-www-modern-47efbea5";
33854+
var ReactVersion = "18.3.0-www-modern-cb7c50df";
3385533855

3385633856
function createPortal$1(
3385733857
children,
@@ -45048,8 +45048,8 @@ function hydrateRoot$1(container, initialChildren, options) {
4504845048
}
4504945049

4505045050
if (enableAsyncActions && enableFormActions) {
45051-
if (options.experimental_formState !== undefined) {
45052-
formState = options.experimental_formState;
45051+
if (options.formState !== undefined) {
45052+
formState = options.formState;
4505345053
}
4505445054
}
4505545055
}

compiled/facebook-www/ReactDOMTesting-dev.classic.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34623,7 +34623,7 @@ function createFiberRoot(
3462334623
return root;
3462434624
}
3462534625

34626-
var ReactVersion = "18.3.0-www-classic-eb6d9c3d";
34626+
var ReactVersion = "18.3.0-www-classic-2ae60193";
3462734627

3462834628
function createPortal$1(
3462934629
children,
@@ -46295,8 +46295,8 @@ function hydrateRoot$1(container, initialChildren, options) {
4629546295
}
4629646296

4629746297
if (enableAsyncActions && enableFormActions) {
46298-
if (options.experimental_formState !== undefined) {
46299-
formState = options.experimental_formState;
46298+
if (options.formState !== undefined) {
46299+
formState = options.formState;
4630046300
}
4630146301
}
4630246302
}

compiled/facebook-www/ReactDOMTesting-dev.modern.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34468,7 +34468,7 @@ function createFiberRoot(
3446834468
return root;
3446934469
}
3447034470

34471-
var ReactVersion = "18.3.0-www-modern-9af4f539";
34471+
var ReactVersion = "18.3.0-www-modern-40cd18cd";
3447234472

3447334473
function createPortal$1(
3447434474
children,
@@ -45797,8 +45797,8 @@ function hydrateRoot$1(container, initialChildren, options) {
4579745797
}
4579845798

4579945799
if (enableAsyncActions && enableFormActions) {
45800-
if (options.experimental_formState !== undefined) {
45801-
formState = options.experimental_formState;
45800+
if (options.formState !== undefined) {
45801+
formState = options.formState;
4580245802
}
4580345803
}
4580445804
}

0 commit comments

Comments
 (0)