We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ac8d9 commit 102d829Copy full SHA for 102d829
1 file changed
packages/code-studio/src/settings/LegalNotice.tsx
@@ -9,8 +9,10 @@ function LegalNotice(): ReactElement {
9
};
10
11
return (
12
- <Button kind="ghost" onClick={toggle} icon={vsLaw}>
13
- Legal Notices
+ <>
+ <Button kind="ghost" onClick={toggle} icon={vsLaw}>
14
+ Legal Notices
15
+ </Button>
16
<Modal isOpen={modal} toggle={toggle} className="theme-bg-light">
17
<ModalHeader toggle={toggle}>Legal Notice</ModalHeader>
18
<ModalBody>
@@ -35,7 +37,7 @@ function LegalNotice(): ReactElement {
35
37
</p>
36
38
</ModalBody>
39
</Modal>
- </Button>
40
+ </>
41
);
42
}
43
0 commit comments