We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9227fd0 commit f694885Copy full SHA for f694885
static/app/views/issueList/supergroups/useSuperGroups.tsx
@@ -45,6 +45,7 @@ export function useSuperGroups(groupIds: string[]): {
45
{
46
query: {
47
group_id: requestedGroupIds,
48
+ status: 'unresolved',
49
},
50
51
],
@@ -67,6 +68,9 @@ export function useSuperGroups(groupIds: string[]): {
67
68
}
69
const result: SupergroupLookup = Object.fromEntries(groupIds.map(id => [id, null]));
70
for (const sg of response.data) {
71
+ if (sg.group_ids.length <= 1) {
72
+ continue;
73
+ }
74
for (const groupId of sg.group_ids) {
75
result[String(groupId)] = sg;
76
0 commit comments