diff --git a/Libraries/Performance/Systrace.js b/Libraries/Performance/Systrace.js index d9a8908f905367..6e09bc6cfb02d8 100644 --- a/Libraries/Performance/Systrace.js +++ b/Libraries/Performance/Systrace.js @@ -161,7 +161,9 @@ const Systrace = { } if (_canInstallReactHook) { if (_useFiber) { - global.performance = enabled ? userTimingPolyfill : undefined; + if (enabled && global.performance === undefined) { + global.performance = userTimingPolyfill; + } } else { const ReactDebugTool = require('ReactDebugTool'); if (enabled) {