Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/shared/forks/ReactFeatureFlags.www.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ export const {
// It's not used anywhere in production yet.

export const enableProfilerTimer = __PROFILE__;
export const enableProfilerCommitHooks = __PROFILE__;

// Temporarily disable commit hooks flag to verify it does not cause a regression.
// TODO (brian) Re-enable this flag if performance is mostly neutral.
export const enableProfilerCommitHooks = false;

// Logs additional User Timing API marks for use with an experimental profiling tool.
export const enableSchedulingProfiler = __PROFILE__;
Expand Down