Skip to content

Commit

Permalink
Fix emoji character displayed in Chrome extension (facebook#19603)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Vaughn committed Aug 13, 2020
1 parent ccb6c39 commit c3ee973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-devtools-extensions/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function createPanelIfReactLoaded() {
let needsToSyncElementSelection = false;

chrome.devtools.panels.create(
isChrome ? '⚛ Components' : 'Components',
isChrome ? '⚛ Components' : 'Components',
'',
'panel.html',
extensionPanel => {
Expand Down Expand Up @@ -326,7 +326,7 @@ function createPanelIfReactLoaded() {
);

chrome.devtools.panels.create(
isChrome ? '⚛ Profiler' : 'Profiler',
isChrome ? '⚛ Profiler' : 'Profiler',
'',
'panel.html',
extensionPanel => {
Expand Down

0 comments on commit c3ee973

Please sign in to comment.