fix: deduplicate discovered backend features

Signed-off-by: Stanislav C <150145013+stanislav-c@users.noreply.github.com>
This commit is contained in:
Stanislav C
2025-08-28 10:52:42 +02:00
parent 210406dfc0
commit 33bd4d0507
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -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)) };
}
}