File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ export class CommandCenter {
271271 const message = `Are you sure you want to clean changes in ${ basename } ?` ;
272272 const yes = 'Yes' ;
273273 const no = 'No, keep them' ;
274- const pick = await window . showQuickPick ( [ no , yes ] , { placeHolder : message } ) ;
274+ const pick = await window . showQuickPick ( [ yes , no ] , { placeHolder : message } ) ;
275275
276276 if ( pick !== yes ) {
277277 return ;
@@ -286,7 +286,7 @@ export class CommandCenter {
286286 const message = `Are you sure you want to clean all changes?` ;
287287 const yes = 'Yes' ;
288288 const no = 'No, keep them' ;
289- const pick = await window . showQuickPick ( [ no , yes ] , { placeHolder : message } ) ;
289+ const pick = await window . showQuickPick ( [ yes , no ] , { placeHolder : message } ) ;
290290
291291 if ( pick !== yes ) {
292292 return ;
You can’t perform that action at this time.
0 commit comments