We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df3ae46 commit c714a49Copy full SHA for c714a49
packages/react-devtools-extensions/src/main.js
@@ -33,6 +33,7 @@ const LOCAL_STORAGE_SUPPORTS_PROFILING_KEY =
33
'React::DevTools::supportsProfiling';
34
35
const isChrome = getBrowserName() === 'Chrome';
36
+const isEdge = getBrowserName() === 'Edge';
37
38
let panelCreated = false;
39
@@ -203,7 +204,7 @@ function createPanelIfReactLoaded() {
203
204
205
store = new Store(bridge, {
206
isProfiling,
- supportsReloadAndProfile: isChrome,
207
+ supportsReloadAndProfile: isChrome || isEdge,
208
supportsProfiling,
209
// At this time, the scheduling profiler can only parse Chrome performance profiles.
210
supportsSchedulingProfiler: isChrome,
0 commit comments