Skip to content

Commit fe12b7d

Browse files
committed
refactor(web/toolbar): Change toolbar display text
1 parent 49168ce commit fe12b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/web/toolbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MONO_FONT } from './outline';
44

55
export const createToolbar = () => {
66
const status = createElement(
7-
`<div id="react-scan-toolbar" title="Number of unnecessary renders and time elapsed" style="position:fixed;bottom:3px;right:3px;background:rgba(0,0,0,0.5);padding:4px 8px;border-radius:4px;color:white;z-index:2147483647;font-family:${MONO_FONT}" aria-hidden="true">hide scanner</div>`,
7+
`<div id="react-scan-toolbar" title="Number of unnecessary renders and time elapsed" style="position:fixed;bottom:3px;right:3px;background:rgba(0,0,0,0.5);padding:4px 8px;border-radius:4px;color:white;z-index:2147483647;font-family:${MONO_FONT}" aria-hidden="true">react-scan</div>`,
88
) as HTMLDivElement;
99

1010
let isHidden = localStorage.getItem('react-scan-hidden') === 'true';

0 commit comments

Comments
 (0)