diff --git a/packages/react-devtools-extensions/src/main.js b/packages/react-devtools-extensions/src/main.js index 6a3836839a4ea..70aaf92a7d528 100644 --- a/packages/react-devtools-extensions/src/main.js +++ b/packages/react-devtools-extensions/src/main.js @@ -27,6 +27,7 @@ const LOCAL_STORAGE_SUPPORTS_PROFILING_KEY = 'React::DevTools::supportsProfiling'; const isChrome = getBrowserName() === 'Chrome'; +const isEdge = getBrowserName() === 'Edge'; let panelCreated = false; @@ -149,7 +150,7 @@ function createPanelIfReactLoaded() { store = new Store(bridge, { isProfiling, - supportsReloadAndProfile: isChrome, + supportsReloadAndProfile: isChrome || isEdge, supportsProfiling, // At this time, the scheduling profiler can only parse Chrome performance profiles. supportsSchedulingProfiler: isChrome,