Don't throw error if user cancels out of choosing a language (#2365)

When running "Create Query", if the user escapes out of the language quickpick we don't need to throw an error. Instead we can just show a `UserCancellationException` notice.
This commit is contained in:
Shati Patel
2023-04-21 08:29:09 +01:00
committed by GitHub
parent f0d41f6d3d
commit 5fb001632b

View File

@@ -141,7 +141,7 @@ export class SkeletonQueryWizard {
maxStep: 3,
});
return await askForLanguage(this.cliServer, false);
return await askForLanguage(this.cliServer, true);
}
private async createQlPack() {