Skip to content

Commit

Permalink
Add type annotation for environment list retrieval in Utils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
amitjoshi committed Nov 20, 2024
1 parent 9c1bbcd commit d245756
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/common/utilities/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ export async function getEnvList(telemetry: ITelemetry, endpointStamp: ServiceEn

if (envListResponse.ok) {
const envListJson = await envListResponse.json();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
envListJson.value.forEach((env: any) => {
envInfo.push({
envId: env.properties.linkedEnvironmentMetadata.instanceUrl,
Expand Down

0 comments on commit d245756

Please sign in to comment.