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 38161eb commit e5ed209Copy full SHA for e5ed209
src/utils/connection.ts
@@ -9,7 +9,6 @@ const execAsync = promisify(exec);
9
10
/**
11
* Executes the Salesforce CLI command to get org information
12
- * @param projectPath Optional path to the Salesforce project root
13
* @returns Parsed response from sf org display --json command
14
*/
15
async function getSalesforceOrgInfo(): Promise<SalesforceCLIResponse> {
@@ -39,7 +38,6 @@ async function getSalesforceOrgInfo(): Promise<SalesforceCLIResponse> {
39
38
if (stderr) {
40
console.warn('[Salesforce CLI] STDERR:', stderr);
41
}
42
-
43
// Try to parse stdout as JSON
44
let response: SalesforceCLIResponse;
45
try {
0 commit comments