Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Fix linting error in goDebugConfiguration.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Apr 6, 2020
1 parent 5afb2df commit a424c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goDebugConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class GoDebugConfigurationProvider implements vscode.DebugConfigurationPr
return;
}

const neverAgain = { title: "Don't Show Again" };
const neverAgain = { title: `Don't Show Again` };
vscode.window.showWarningMessage(warningMessage, neverAgain).then((result) => {
if (result === neverAgain) {
updateGlobalState(ignoreWarningKey, true);
Expand Down

0 comments on commit a424c33

Please sign in to comment.