Skip to content

Commit 9c129f5

Browse files
committed
Remove unnecessary dismiss button
1 parent 5403982 commit 9c129f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ async function activateWithInstalledDistribution(ctx: ExtensionContext, distribu
310310
ctx.subscriptions.push(commands.registerCommand('codeQL.quickQuery', async () => displayQuickQuery(ctx, cliServer, databaseUI)));
311311
ctx.subscriptions.push(commands.registerCommand('codeQL.restartQueryServer', async () => {
312312
await qs.restartQueryServer();
313-
const response = await Window.showInformationMessage('CodeQL Query Server restarted', 'Ok', 'Show Log');
313+
const response = await Window.showInformationMessage('CodeQL Query Server restarted', 'Show Log');
314314
if (response === 'Show Log') {
315315
qs.showLog();
316316
}

0 commit comments

Comments
 (0)