Skip to content

Commit

Permalink
Removing duplicated issue data
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft committed Dec 20, 2024
1 parent 664c401 commit 17e7609
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/commands/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
*--------------------------------------------------------------------------------------------*/

import { IActionContext, IAzureQuickPickOptions } from '@microsoft/vscode-azext-utils';
import * as os from 'os';
import * as vscode from 'vscode';
import { extensionId, extensionVersion } from '../constants';
import { extensionId } from '../constants';

interface HelpMenuItem extends vscode.QuickPickItem {
handler(): Promise<void>,
Expand Down Expand Up @@ -52,12 +51,7 @@ async function editSettings(): Promise<void> {
}

async function getIssueData(): Promise<string> {
return `Version: ${extensionVersion.value}
OS: ${process.platform}
OS Release: ${os.release()}
Product: ${vscode.env.appName}
Product Version: ${vscode.version}
App Host: ${vscode.env.appHost}
return `App Host: ${vscode.env.appHost}
Remote Name: ${vscode.env.remoteName}
Language: ${vscode.env.language}`;
}

0 comments on commit 17e7609

Please sign in to comment.