File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
pages/[platform]/connected-components/authenticator Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export const CopyButton = ({
29
29
< CopyToClipboard text = { copyText } onCopy = { copy } >
30
30
< Button
31
31
className = { className }
32
- isLoading = { copied }
32
+ isDisabled = { copied }
33
33
size = { size }
34
34
variation = { variation }
35
35
>
Original file line number Diff line number Diff line change 1
1
import { Tabs , TabItem } from ' @aws-amplify/ui-react' ;
2
+ import { TerminalCommand } from ' @/components/InstallScripts' ;
2
3
3
4
The Authenticator works seamlessly with the [ Amplify CLI] ( https://docs.amplify.aws/cli/start/install/ )
4
5
to ** automatically** work with your backend.
@@ -9,16 +10,12 @@ if you're using a version before `6.4.0`:
9
10
<Tabs >
10
11
<TabItem title = " npm" >
11
12
12
- ``` shell
13
- npm install -g @aws-amplify/cli@latest
14
- ```
13
+ <TerminalCommand command = " npm install -g @aws-amplify/cli@latest" />
15
14
16
15
</TabItem >
17
16
<TabItem title = " yarn" >
18
17
19
- ``` shell
20
- yarn global add @aws-amplify/cli@latest
21
- ```
18
+ <TerminalCommand command = " yarn global add @aws-amplify/cli@latest" />
22
19
23
20
</TabItem >
24
21
</Tabs >
You can’t perform that action at this time.
0 commit comments