File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,3 +26,4 @@ export const passChildrenWhenCloningPersistedNodes = __VARIANT__;
2626export const enableLazyPublicInstanceInFabric = __VARIANT__ ;
2727export const renameElementSymbol = __VARIANT__ ;
2828export const enableFragmentRefs = __VARIANT__ ;
29+ export const enableComponentPerformanceTrack = __VARIANT__ ;
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ export const enableProfilerTimer = __PROFILE__;
5959export const enableReactTestRendererWarning = false ;
6060export const enableRetryLaneExpiration = false ;
6161export const enableSchedulingProfiler = __PROFILE__ ;
62- export const enableComponentPerformanceTrack = false ;
6362export const enableScopeAPI = false ;
6463export const enableSuspenseAvoidThisFallback = false ;
6564export const enableSuspenseCallback = true ;
@@ -84,6 +83,8 @@ export const enableSrcObject = false;
8483export const enableHydrationChangeEvent = true ;
8584export const enableDefaultTransitionIndicator = false ;
8685export const ownerStackLimit = 1e4 ;
86+ export const enableComponentPerformanceTrack : boolean =
87+ __PROFILE__ && dynamicFlags . enableComponentPerformanceTrack ;
8788
8889// Flow magic to verify the exports of this file match the original version.
8990( ( ( ( null : any ) : ExportsType ) : FeatureFlagsType ) : ExportsType ) ;
You can’t perform that action at this time.
0 commit comments