Skip to content

Commit

Permalink
Unncessary await, not neede.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsinnit committed Jan 30, 2025
1 parent 1c507de commit a0a8ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/utils/clusterfilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default async function aksClusterFilter(_context: IActionContext, target:
}

async function getUniqueClusters() {
const filteredClusters = await getFilteredClusters();
const filteredClusters = getFilteredClusters();

if (filteredClusters && Array.isArray(filteredClusters)) {
// Use a Map to remove duplicates based on subid and ClusterName
Expand Down

0 comments on commit a0a8ff7

Please sign in to comment.