Skip to content

Commit

Permalink
[React Native] Set allowConcurrentByDefault = true (#21491)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickhanlonii committed May 11, 2021
1 parent 3890fb5 commit b8fda6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/shared/forks/ReactFeatureFlags.native-fb.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const enableRecursiveCommitTraversal = false;
export const disableSchedulerTimeoutInWorkLoop = false;
export const enableLazyContextPropagation = false;
export const enableSyncDefaultUpdates = false;
export const allowConcurrentByDefault = false;
export const allowConcurrentByDefault = true;

// Flow magic to verify the exports of this file match the original version.
// eslint-disable-next-line no-unused-vars
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const enableRecursiveCommitTraversal = false;
export const disableSchedulerTimeoutInWorkLoop = false;
export const enableLazyContextPropagation = false;
export const enableSyncDefaultUpdates = false;
export const allowConcurrentByDefault = false;
export const allowConcurrentByDefault = true;

// Flow magic to verify the exports of this file match the original version.
// eslint-disable-next-line no-unused-vars
Expand Down

0 comments on commit b8fda6c

Please sign in to comment.