Skip to content

Commit

Permalink
Make enableBigIntSupport www dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Silbermann authored and eps1lon committed Mar 14, 2024
1 parent 9ffe910 commit e46b1e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/shared/forks/ReactFeatureFlags.www-dynamic.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export const useModernStrictMode = __VARIANT__;
export const enableRefAsProp = __VARIANT__;
export const enableClientRenderFallbackOnTextMismatch = __VARIANT__;
export const enableRetryLaneExpiration = __VARIANT__;
export const enableBigIntSupport = __VARIANT__;
export const retryLaneExpirationMs = 5000;
export const syncLaneExpirationMs = 250;
export const transitionLaneExpirationMs = 5000;
Expand Down
3 changes: 1 addition & 2 deletions packages/shared/forks/ReactFeatureFlags.www.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export const {
useModernStrictMode,
enableRefAsProp,
enableClientRenderFallbackOnTextMismatch,
enableBigIntSupport,
} = dynamicFeatureFlags;

// On WWW, __EXPERIMENTAL__ is used for a new modern build.
Expand Down Expand Up @@ -118,8 +119,6 @@ export const enableServerComponentLogs = true;

export const enableReactTestRendererWarning = false;

export const enableBigIntSupport = false;

// TODO: Roll out with GK. Don't keep as dynamic flag for too long, though,
// because JSX is an extremely hot path.
export const disableStringRefs = false;
Expand Down

0 comments on commit e46b1e8

Please sign in to comment.