We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93ced6 commit 1503d9dCopy full SHA for 1503d9d
editors/code/src/main.ts
@@ -344,7 +344,7 @@ async function performDownloadWithRetryDialog<T>(downloadFunc: () => Promise<T>,
344
try {
345
return await downloadFunc();
346
} catch (e) {
347
- let selected = await vscode.window.showErrorMessage("Failed perform download: " + e.message, {}, {
+ const selected = await vscode.window.showErrorMessage("Failed perform download: " + e.message, {}, {
348
title: "Update Github Auth Token",
349
updateToken: true,
350
}, {
@@ -353,7 +353,7 @@ async function performDownloadWithRetryDialog<T>(downloadFunc: () => Promise<T>,
353
354
title: "Dismiss",
355
});
356
-
+
357
if (selected?.updateToken) {
358
await queryForGithubToken(state);
359
continue;
0 commit comments