Skip to content

Commit 2591864

Browse files
Brian Vaughnkoto
Brian Vaughn
authored andcommitted
Fix emoji character displayed in Chrome extension (facebook#19603)
1 parent e70eddb commit 2591864

File tree

1 file changed

+2
-2
lines changed
  • packages/react-devtools-extensions/src

1 file changed

+2
-2
lines changed

packages/react-devtools-extensions/src/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function createPanelIfReactLoaded() {
296296
let needsToSyncElementSelection = false;
297297

298298
chrome.devtools.panels.create(
299-
isChrome ? '⚛ Components' : 'Components',
299+
isChrome ? '⚛ Components' : 'Components',
300300
'',
301301
'panel.html',
302302
extensionPanel => {
@@ -326,7 +326,7 @@ function createPanelIfReactLoaded() {
326326
);
327327

328328
chrome.devtools.panels.create(
329-
isChrome ? '⚛ Profiler' : 'Profiler',
329+
isChrome ? '⚛ Profiler' : 'Profiler',
330330
'',
331331
'panel.html',
332332
extensionPanel => {

0 commit comments

Comments
 (0)