Merge pull request #31006 from stanislav-c/be-feature-dedupe
fix: deduplicate discovered backend features
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/backend-defaults': patch
|
||||
---
|
||||
|
||||
Deduplicate discovered features discovered with discoveryFeatureLoader
|
||||
@@ -175,6 +175,6 @@ export class PackageDiscoveryService {
|
||||
}
|
||||
}
|
||||
|
||||
return { features };
|
||||
return { features: Array.from(new Set(features)) };
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user