Skip to content

Commit

Permalink
Put the icon at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed Sep 10, 2024
1 parent 601e98b commit 7cb7bc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-devtools-extensions/src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function createComponentsPanel() {
}

chrome.devtools.panels.create(
__IS_CHROME__ || __IS_EDGE__ ? 'Components' : 'Components',
__IS_CHROME__ || __IS_EDGE__ ? 'Components' : 'Components',
__IS_EDGE__ ? 'icons/production.svg' : '',
'panel.html',
createdPanel => {
Expand Down Expand Up @@ -224,7 +224,7 @@ function createProfilerPanel() {
}

chrome.devtools.panels.create(
__IS_CHROME__ || __IS_EDGE__ ? 'Profiler' : 'Profiler',
__IS_CHROME__ || __IS_EDGE__ ? 'Profiler' : 'Profiler',
__IS_EDGE__ ? 'icons/production.svg' : '',
'panel.html',
createdPanel => {
Expand Down

0 comments on commit 7cb7bc6

Please sign in to comment.