diff --git a/src/commands/walkthroughs.ts b/src/commands/walkthroughs.ts index 1fc9c35..f5674e4 100644 --- a/src/commands/walkthroughs.ts +++ b/src/commands/walkthroughs.ts @@ -17,18 +17,6 @@ export class GetStartedCommand extends Command { walkthroughId = undefined; } - void openWalkthrough(extensionId, walkthroughId ?? 'gitlens.welcome'); - } -} - -@command() -export class OpenWalkthroughCommand extends Command { - constructor(private readonly container: Container) { - super(Commands.OpenWalkthrough); - } - - execute(walkthroughAndStep?: string) { - const [walkthroughId, stepId] = walkthroughAndStep?.split('|') ?? 'gitlens.welcome'; - void openWalkthrough(this.container.context.extension.id, walkthroughId, stepId); + void openWalkthrough(extensionId, walkthroughId ?? 'gitlens.welcome', undefined, false); } }