diff --git a/src/tree/integration-account/IntegrationAccountsProvider.ts b/src/tree/integration-account/IntegrationAccountsProvider.ts index a3f96703..93acf30e 100644 --- a/src/tree/integration-account/IntegrationAccountsProvider.ts +++ b/src/tree/integration-account/IntegrationAccountsProvider.ts @@ -24,7 +24,7 @@ export class IntegrationAccountProvider implements IChildProvider { this.nextLink = undefined; } - const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId, node.environment.resourceManagerEndpointUrl); + const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId); addExtensionUserAgent(client); const integrationAccounts = this.nextLink === undefined diff --git a/src/tree/logic-app/LogicAppsProvider.ts b/src/tree/logic-app/LogicAppsProvider.ts index 4bbfcbcc..4bbb8924 100644 --- a/src/tree/logic-app/LogicAppsProvider.ts +++ b/src/tree/logic-app/LogicAppsProvider.ts @@ -28,7 +28,7 @@ export class LogicAppsProvider implements IChildProvider { this.nextLink = undefined; } - const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId, node.environment.resourceManagerEndpointUrl); + const client = new LogicAppsManagementClient(node.credentials, node.subscriptionId); addExtensionUserAgent(client); const logicApps = this.nextLink === undefined