Skip to content

Commit 5fc2ecd

Browse files
committed
refactor(web): Remove emojis from toolbar status text
1 parent 033994d commit 5fc2ecd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/web/toolbar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)';

0 commit comments

Comments
 (0)