diff --git a/plugins/org/src/components/Cards/OwnershipCard/useAggregatedEntities.ts b/plugins/org/src/components/Cards/OwnershipCard/useAggregatedEntities.ts index e8fb2d52dc..45595acb78 100644 --- a/plugins/org/src/components/Cards/OwnershipCard/useAggregatedEntities.ts +++ b/plugins/org/src/components/Cards/OwnershipCard/useAggregatedEntities.ts @@ -91,12 +91,7 @@ export function useAggregatedEntities( await Promise.all( childRelations.map(childGroup => limiter(async () => { - const promise = catalogApi.getEntityByName({ - kind: 'Group', - namespace: 'default', - name: childGroup.name, - }); - + const promise = catalogApi.getEntityByRef(childGroup); outstandingEntities.set(childGroup.name, promise); try { const processedEntity = await promise;