@@ -14,17 +14,8 @@ import typeof * as FeatureFlagsShimType from './ReactFeatureFlags.www';
14
14
export const {
15
15
debugRenderPhaseSideEffects,
16
16
debugRenderPhaseSideEffectsForStrictMode,
17
- replayFailedUnitOfWorkWithInvokeGuardedCallback,
18
- warnAboutDeprecatedLifecycles,
19
17
disableInputAttributeSyncing,
20
- warnAboutShorthandPropertyCollision,
21
- warnAboutDeprecatedSetNativeProps,
22
- enableUserBlockingEvents,
23
- disableLegacyContext,
24
- disableSchedulerTimeoutBasedOnReactExpirationTime,
25
18
enableTrustedTypesIntegration,
26
- warnAboutStringRefs,
27
- warnAboutDefaultPropsOnFunctionComponents,
28
19
} = require ( 'ReactFeatureFlags' ) ;
29
20
30
21
// In www, we have experimental support for gathering data
@@ -39,6 +30,16 @@ export const enableProfilerTimer = __PROFILE__;
39
30
export const enableSchedulerTracing = __PROFILE__ ;
40
31
export const enableSchedulerDebugging = true ;
41
32
33
+ export const replayFailedUnitOfWorkWithInvokeGuardedCallback = false ;
34
+ export const warnAboutDeprecatedLifecycles = true ;
35
+ export const warnAboutShorthandPropertyCollision = false ;
36
+ export const warnAboutDeprecatedSetNativeProps = false ;
37
+ export const disableLegacyContext = false ;
38
+ export const warnAboutStringRefs = false ;
39
+ export const warnAboutDefaultPropsOnFunctionComponents = false ;
40
+ export const disableSchedulerTimeoutBasedOnReactExpirationTime = false ;
41
+ export const enableUserBlockingEvents = true ;
42
+
42
43
export const enableStableConcurrentModeAPIs = false ;
43
44
44
45
export const enableSuspenseServerRenderer = true ;
0 commit comments