Skip to content

Commit

Permalink
Make disableSchedulerTimeoutInWorkLoop a static ff (#26497)
Browse files Browse the repository at this point in the history
## Overview

There's a known infinite loop with this but we're not running an
experiment any time soon.
  • Loading branch information
rickhanlonii committed Mar 28, 2023
1 parent f718199 commit f62cb39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/shared/forks/ReactFeatureFlags.www.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const {
enableDebugTracing,
skipUnmountedBoundaries,
enableUseRefAccessWarning,
disableSchedulerTimeoutInWorkLoop,
enableLazyContextPropagation,
enableUnifiedSyncLane,
enableCapturePhaseSelectiveHydrationWithoutDiscreteEventReplay,
Expand All @@ -47,6 +46,8 @@ export const enableUpdaterTracking = __PROFILE__;
export const createRootStrictEffectsByDefault = false;
export const enableSuspenseAvoidThisFallback = true;
export const enableSuspenseAvoidThisFallbackFizz = false;

export const disableSchedulerTimeoutInWorkLoop = false;
export const enableCPUSuspense = true;
export const enableFloat = true;
export const enableUseHook = true;
Expand Down

0 comments on commit f62cb39

Please sign in to comment.