Skip to content

Commit 759103e

Browse files
committed
hardcode flag to false
1 parent aa5de95 commit 759103e

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

packages/shared/forks/ReactFeatureFlags.www-dynamic.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export const enableLazyContextPropagation = __VARIANT__;
2727
export const enableSyncDefaultUpdates = __VARIANT__;
2828
export const consoleManagedByDevToolsDuringStrictMode = __VARIANT__;
2929
export const warnOnSubscriptionInsideStartTransition = __VARIANT__;
30-
export const enableSuspenseAvoidThisFallback = __VARIANT__;
3130

3231
// Enable this flag to help with concurrent mode debugging.
3332
// It logs information to the console about React scheduling, rendering, and commit phases.

packages/shared/forks/ReactFeatureFlags.www.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export const {
3232
enableLazyContextPropagation,
3333
enableSyncDefaultUpdates,
3434
warnOnSubscriptionInsideStartTransition,
35-
enableSuspenseAvoidThisFallback,
3635
} = dynamicFeatureFlags;
3736

3837
// On WWW, __EXPERIMENTAL__ is used for a new modern build.
@@ -49,6 +48,7 @@ export const enableProfilerNestedUpdateScheduledHook =
4948
export const enableUpdaterTracking = __PROFILE__;
5049

5150
export const enableSuspenseLayoutEffectSemantics = true;
51+
export const enableSuspenseAvoidThisFallback = false;
5252

5353
// Logs additional User Timing API marks for use with an experimental profiling tool.
5454
export const enableSchedulingProfiler =

0 commit comments

Comments
 (0)