diff --git a/src/globalGroups.ts b/src/globalGroups.ts index e122b2dd..77f576f9 100644 --- a/src/globalGroups.ts +++ b/src/globalGroups.ts @@ -63,7 +63,7 @@ function filterAppsByGroup(apps: any[], groupNamePrefix: string): string[] { (a) => a.groups.filter((g: { name: string }) => g.name.startsWith(groupNamePrefix), - ).length === 1, + ).length > 0, ) .map((a) => a.id); }