diff --git a/packages/react-devtools-extensions/src/main.js b/packages/react-devtools-extensions/src/main.js index 95d36f1915e53..85562cbb88b54 100644 --- a/packages/react-devtools-extensions/src/main.js +++ b/packages/react-devtools-extensions/src/main.js @@ -473,7 +473,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 => { @@ -504,7 +504,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 => {