Skip to content

Commit 1503d9d

Browse files
committed
Fix tslint
1 parent b93ced6 commit 1503d9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editors/code/src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ async function performDownloadWithRetryDialog<T>(downloadFunc: () => Promise<T>,
344344
try {
345345
return await downloadFunc();
346346
} catch (e) {
347-
let selected = await vscode.window.showErrorMessage("Failed perform download: " + e.message, {}, {
347+
const selected = await vscode.window.showErrorMessage("Failed perform download: " + e.message, {}, {
348348
title: "Update Github Auth Token",
349349
updateToken: true,
350350
}, {
@@ -353,7 +353,7 @@ async function performDownloadWithRetryDialog<T>(downloadFunc: () => Promise<T>,
353353
}, {
354354
title: "Dismiss",
355355
});
356-
356+
357357
if (selected?.updateToken) {
358358
await queryForGithubToken(state);
359359
continue;

0 commit comments

Comments
 (0)