From 97eccab2e040dd68cdc268e8033dfc75463e006a Mon Sep 17 00:00:00 2001 From: meganrogge Date: Tue, 7 Nov 2023 11:16:22 -0800 Subject: [PATCH] update reference in npm --- extensions/npm/src/npmMain.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/npm/src/npmMain.ts b/extensions/npm/src/npmMain.ts index d03a72a72fc..c8cfc11fb11 100644 --- a/extensions/npm/src/npmMain.ts +++ b/extensions/npm/src/npmMain.ts @@ -78,7 +78,7 @@ export async function activate(context: vscode.ExtensionContext): Promise } const lines = outputMatch.regexMatch[1]; - const fixes: vscode.TerminalQuickFixExecuteTerminalCommand[] = []; + const fixes: vscode.TerminalQuickFixTerminalCommand[] = []; for (const line of lines.split('\n')) { // search from the second char, since the lines might be prefixed with // "npm ERR!" which comes before the actual command suggestion.