File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export {
37
37
unstable_LegacyHidden ,
38
38
unstable_Scope ,
39
39
unstable_SuspenseList ,
40
+ unstable_ViewTransition ,
40
41
unstable_TracingMarker ,
41
42
unstable_useCacheRefresh ,
42
43
use ,
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export const enableSiblingPrerendering = __VARIANT__;
39
39
export const enableUseResourceEffectHook = __VARIANT__ ;
40
40
export const enableRemoveConsolePatches = __VARIANT__ ;
41
41
export const enableFastAddPropertiesInDiffing = __VARIANT__ ;
42
+ export const enableViewTransition = __VARIANT__ ;
42
43
43
44
// TODO: These flags are hard-coded to the default values used in open source.
44
45
// Update the tests so that they pass in either mode, then set these
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ export const {
38
38
enableOwnerStacks,
39
39
enableRemoveConsolePatches,
40
40
enableFastAddPropertiesInDiffing,
41
+ enableViewTransition,
41
42
} = dynamicFeatureFlags ;
42
43
43
44
// On WWW, __EXPERIMENTAL__ is used for a new modern build.
@@ -60,7 +61,6 @@ export const enableLegacyFBSupport = true;
60
61
export const enableYieldingBeforePassive = false ;
61
62
62
63
export const enableThrottledScheduling = false ;
63
- export const enableViewTransition = false ;
64
64
65
65
export const enableHydrationLaneScheduling = true ;
66
66
You can’t perform that action at this time.
0 commit comments