File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const createToolbar = () => {
3131 const overlay = document . getElementById ( 'react-scan-overlay' ) ;
3232 if ( ! overlay ) return ;
3333 overlay . style . display = isHidden ? 'none' : 'block' ;
34- status . textContent = isHidden ? 'start ► ' : 'stop ⏹ ' ;
34+ status . textContent = isHidden ? 'start' : 'stop' ;
3535 status . appendChild ( toggleButton ) ;
3636 ReactScanInternals . isPaused = isHidden ;
3737 if ( ReactScanInternals . isPaused ) {
@@ -59,7 +59,7 @@ export const createToolbar = () => {
5959
6060 status . addEventListener ( 'mouseenter' , ( ) => {
6161 if ( status . textContent !== '☰' ) {
62- status . textContent = isHidden ? 'start ► ' : 'stop ⏹ ' ;
62+ status . textContent = isHidden ? 'start' : 'stop' ;
6363 status . appendChild ( toggleButton ) ;
6464 }
6565 status . style . backgroundColor = 'rgba(0,0,0,1)' ;
You can’t perform that action at this time.
0 commit comments