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 8c58ebf commit 5ecf3a9Copy full SHA for 5ecf3a9
1 file changed
source/utils/commit.js
@@ -32,20 +32,20 @@ async function askForCommitMessage() {
32
};
33
34
const items = [
35
- {
36
- label: 'Yes',
37
- value: true,
38
- },
39
{
40
label: 'No',
41
value: false,
42
},
+ {
+ label: 'Yes',
+ value: true,
+ },
43
];
44
45
return (
46
<Box flexDirection="column">
47
<Text>{`Suggested commit message: ${prompt}\nDo you want to proceed?`}</Text>
48
- <SelectInput initialIndex={1} items={items} onSelect={handleSelect} />
+ <SelectInput items={items} onSelect={handleSelect} />
49
</Box>
50
);
51
0 commit comments