feat(misc): change cloud prompt default

This commit is contained in:
Victor Savkin 2022-02-07 20:09:40 -05:00
parent 0b86b141e0
commit e008caf9f9
No known key found for this signature in database
GPG Key ID: 39178FEB7698B817
2 changed files with 2 additions and 2 deletions

View File

@ -641,7 +641,7 @@ async function askAboutNxCloud(parsedArgs: any) {
name: 'No',
},
],
initial: 'No' as any,
initial: 'Yes' as any,
},
])
.then((a: { NxCloud: 'Yes' | 'No' }) => a.NxCloud === 'Yes');

View File

@ -66,7 +66,7 @@ async function connectToNxCloudPrompt() {
name: 'No',
},
],
initial: 'No' as any,
initial: 'Yes' as any,
},
])
.then((a: { NxCloud: 'Yes' | 'No' }) => a.NxCloud === 'Yes');