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 c624dc3 commit 92ef9ddCopy full SHA for 92ef9dd
packages/react-devtools-extensions/src/main.js
@@ -27,6 +27,7 @@ const LOCAL_STORAGE_SUPPORTS_PROFILING_KEY =
27
'React::DevTools::supportsProfiling';
28
29
const isChrome = getBrowserName() === 'Chrome';
30
+const isEdge = getBrowserName() === 'Edge';
31
32
let panelCreated = false;
33
@@ -149,7 +150,7 @@ function createPanelIfReactLoaded() {
149
150
151
store = new Store(bridge, {
152
isProfiling,
- supportsReloadAndProfile: isChrome,
153
+ supportsReloadAndProfile: isChrome || isEdge,
154
supportsProfiling,
155
// At this time, the scheduling profiler can only parse Chrome performance profiles.
156
supportsSchedulingProfiler: isChrome,
0 commit comments