This commit is contained in:
David Dossett
2022-09-20 14:45:20 -07:00
parent 240ef6ba2d
commit 38c55168f4

View File

@ -20,7 +20,7 @@ export function activate(context: ExtensionContext) {
quickPick.items = Object.keys(options).map(label => ({ label }));
quickPick.onDidChangeSelection(selection => {
if (selection[0]) {
options[selection[0k].label](context)
options[selection[0].label](context)
.catch(console.error);
}
});