diff --git a/src/commands/git/stash.ts b/src/commands/git/stash.ts index 3500f70..fe93da2 100644 --- a/src/commands/git/stash.ts +++ b/src/commands/git/stash.ts @@ -519,7 +519,7 @@ export class StashGitCommand extends QuickCommandBase { // } const gitCommandArgs: GitCommandsCommandArgs = { - command: 'search', + command: 'stash', state: { ...state } }; @@ -552,7 +552,6 @@ export class StashGitCommand extends QuickCommandBase { }`, placeholder: 'Please provide a stash message', value: state.message - // validate: (value: string | undefined): [boolean, string | undefined] => [value != null, undefined] }); const value: StepSelection = yield step;