Skip to content

Commit 9f4fbec

Browse files
authored
export dynamic disableSchedulerTimeoutInWorkLoop flag in www (#27117)
## Summary This was not exposed as a dynamic flag in the build for facebook www. By adding it, we'll be able to roll this out incrementally before cleaning up this code altogether. ## How did you test this change? `yarn build` Before changes, `disableSchedulerTimeoutInWorkLoop` flag is not included in ReactDOM-* build output for facebook www. Afterwards, it is included.
1 parent 546fe46 commit 9f4fbec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/shared/forks/ReactFeatureFlags.www.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export const {
3131
enableAsyncActions,
3232
alwaysThrottleRetries,
3333
enableDO_NOT_USE_disableStrictPassiveEffect,
34+
disableSchedulerTimeoutInWorkLoop,
3435
} = dynamicFeatureFlags;
3536

3637
// On WWW, __EXPERIMENTAL__ is used for a new modern build.
@@ -48,7 +49,6 @@ export const createRootStrictEffectsByDefault = false;
4849
export const enableSuspenseAvoidThisFallback = true;
4950
export const enableSuspenseAvoidThisFallbackFizz = false;
5051

51-
export const disableSchedulerTimeoutInWorkLoop = false;
5252
export const enableCPUSuspense = true;
5353
export const enableFloat = true;
5454
export const enableUseMemoCacheHook = true;

0 commit comments

Comments
 (0)