File tree 2 files changed +13
-10
lines changed
2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Any contributions you make will be via [Pull Requests](https://docs.github.com/e
24
24
- Clone your fork to your local machine
25
25
``` sh
26
26
> git clone https://github.com/< your-github-username> /wrangler2
27
- > cd wrangler
27
+ > cd wrangler2
28
28
```
29
29
You can see that your fork is setup as the ` origin ` remote repository.
30
30
Any changes you wish to make should be in a local branch that is then pushed to this origin remote.
Original file line number Diff line number Diff line change 206
206
*/
207
207
208
208
import React from "react" ;
209
- import { render } from "ink" ;
209
+ import { render , Text } from "ink" ;
210
210
import Table from "ink-table" ;
211
211
import SelectInput from "ink-select-input" ;
212
212
import fetch from "node-fetch" ;
@@ -1010,13 +1010,16 @@ export function ChooseAccount(props: {
1010
1010
onSelect : ( item ) => void ;
1011
1011
} ) {
1012
1012
return (
1013
- < SelectInput
1014
- items = { props . accounts . map ( ( item ) => ( {
1015
- key : item . id ,
1016
- label : item . name ,
1017
- value : item ,
1018
- } ) ) }
1019
- onSelect = { props . onSelect }
1020
- />
1013
+ < >
1014
+ < Text bold > Select an account from below:</ Text >
1015
+ < SelectInput
1016
+ items = { props . accounts . map ( ( item ) => ( {
1017
+ key : item . id ,
1018
+ label : item . name ,
1019
+ value : item ,
1020
+ } ) ) }
1021
+ onSelect = { props . onSelect }
1022
+ />
1023
+ </ >
1021
1024
) ;
1022
1025
}
You can’t perform that action at this time.
0 commit comments