Reenable lazy context propagation (#31405)
Reverts facebook/react#31403 to reenable lazy context propagation The disabling was to produce a build that could help track down whether this flag is causing a possibly related bug in transitions but we don't intend to disable it just fix forward once we figure out what the problem is
Josh Story committed
Nov 1, 2024 at 15:17 UTC
7c8e5e7ab8bb63de911637892392c5efd8ce1d0f
1 file changed
+1
-1
packages/shared/ReactFeatureFlags.js
+1
-1
@@ -101,7 +101,7 @@ export const enableObjectFiber = false;
101
102
export const enableTransitionTracing = false;
103
104
-export const enableLazyContextPropagation = false;
104
+export const enableLazyContextPropagation = true;
105
106
// Expose unstable useContext for performance testing
107
export const enableContextProfiling = false;