diff --git a/packages/react-devtools-extensions/src/main.js b/packages/react-devtools-extensions/src/main.js index 1303e2a0c1..dd947be355 100644 --- a/packages/react-devtools-extensions/src/main.js +++ b/packages/react-devtools-extensions/src/main.js @@ -475,7 +475,7 @@ function createPanelIfReactLoaded() { chrome.devtools.panels.create( IS_CHROME || IS_EDGE ? '⚛️ Components' : 'Components', - '', + IS_EDGE ? 'icons/production.svg' : '', 'panel.html', extensionPanel => { extensionPanel.onShown.addListener(panel => { @@ -506,7 +506,7 @@ function createPanelIfReactLoaded() { chrome.devtools.panels.create( IS_CHROME || IS_EDGE ? '⚛️ Profiler' : 'Profiler', - '', + IS_EDGE ? 'icons/production.svg' : '', 'panel.html', extensionPanel => { extensionPanel.onShown.addListener(panel => {