We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdbed88 commit e201b45Copy full SHA for e201b45
src/components/Hash/index.jsx
@@ -24,7 +24,7 @@ const Hash = ({
24
let compareColor = null;
25
let compareIcon = null;
26
if (compareString && compareString === content) {
27
- compareIcon = <CheckIcon color="inherit" style={{ float: 'right' }}/>;
+ compareIcon = <CheckIcon color="inherit" style={{ float: 'right' }} />;
28
compareColor = { color: 'green' };
29
}
30
@@ -39,7 +39,7 @@ const Hash = ({
39
</MenuProvider>
40
<Menu id={`hashMenu${id}`}>
41
<Item onClick={() => navigator.clipboard.writeText(content)}>
42
- <CopyIcon/>
+ <CopyIcon />
43
{' '}
44
{copy}
45
</Item>
0 commit comments