Skip to content

Commit

Permalink
Schedule BigInt support for next major
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Silbermann committed Feb 26, 2024
1 parent 822d3e4 commit 9b32d88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/shared/ReactFeatureFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ export const enableCPUSuspense = __EXPERIMENTAL__;

export const enableFloat = true;

export const enableBigIntSupport = __EXPERIMENTAL__;

// Enables unstable_useMemoCache hook, intended as a compilation target for
// auto-memoization.
export const enableUseMemoCacheHook = __EXPERIMENTAL__;
Expand Down Expand Up @@ -174,6 +172,8 @@ export const disableClientCache = false;
// Changes Server Components Reconciliation when they have keys
export const enableServerComponentKeys = __NEXT_MAJOR__;

export const enableBigIntSupport = __NEXT_MAJOR__;

/**
* Enables a new error detection for infinite render loops from updates caused
* by setState or similar outside of the component owning the state.
Expand Down

0 comments on commit 9b32d88

Please sign in to comment.