Skip to content

Commit a220ce2

Browse files
committed
git: switch clean picks
1 parent 8994ed0 commit a220ce2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/git/src/commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)