Skip to content

Commit d48c692

Browse files
authored
[flags] make enableScrollEndPolyfill dynamic (#32517)
Will roll this out in www
1 parent 443b7ff commit d48c692

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export const enableUseEffectCRUDOverload = __VARIANT__;
3939
export const enableFastAddPropertiesInDiffing = __VARIANT__;
4040
export const enableLazyPublicInstanceInFabric = false;
4141
export const enableViewTransition = __VARIANT__;
42+
export const enableScrollEndPolyfill = __VARIANT__;
4243

4344
// TODO: These flags are hard-coded to the default values used in open source.
4445
// Update the tests so that they pass in either mode, then set these

packages/shared/forks/ReactFeatureFlags.www.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export const {
3737
transitionLaneExpirationMs,
3838
enableFastAddPropertiesInDiffing,
3939
enableViewTransition,
40+
enableScrollEndPolyfill,
4041
} = dynamicFeatureFlags;
4142

4243
// On WWW, __EXPERIMENTAL__ is used for a new modern build.
@@ -116,7 +117,5 @@ export const enableLazyPublicInstanceInFabric = false;
116117

117118
export const enableSwipeTransition = false;
118119

119-
export const enableScrollEndPolyfill = false;
120-
121120
// Flow magic to verify the exports of this file match the original version.
122121
((((null: any): ExportsType): FeatureFlagsType): ExportsType);

0 commit comments

Comments
 (0)