@@ -13,7 +13,6 @@ import {TimesTag} from 'sentry/components/group/inboxBadges/timesTag';
1313import { UnhandledTag } from 'sentry/components/group/inboxBadges/unhandledTag' ;
1414import { IssueReplayCount } from 'sentry/components/group/issueReplayCount' ;
1515import { IssueSeerBadge } from 'sentry/components/group/issueSeerBadge' ;
16- import { IssueSuperGroup } from 'sentry/components/group/issueSuperGroup' ;
1716import ProjectBadge from 'sentry/components/idBadge/projectBadge' ;
1817import { extractSelectionParameters } from 'sentry/components/pageFilters/parse' ;
1918import { Placeholder } from 'sentry/components/placeholder' ;
@@ -24,7 +23,6 @@ import {defined} from 'sentry/utils';
2423import { getTitle } from 'sentry/utils/events' ;
2524import { useReplayCountForIssues } from 'sentry/utils/replayCount/useReplayCountForIssues' ;
2625import { projectCanLinkToReplay } from 'sentry/utils/replays/projectSupportsReplay' ;
27- import { useSuperGroupForIssues } from 'sentry/utils/supergroup/useSuperGroupForIssues' ;
2826import { useLocation } from 'sentry/utils/useLocation' ;
2927import { useOrganization } from 'sentry/utils/useOrganization' ;
3028
@@ -75,18 +73,13 @@ export function GroupMetaRow({data, showAssignee, showLifetime = true}: Props) {
7573
7674 const issuesPath = `/organizations/${ organization . slug } /issues/` ;
7775 const { getReplayCountForIssue} = useReplayCountForIssues ( ) ;
78- const { getSuperGroupForIssue} = useSuperGroupForIssues ( ) ;
7976
8077 const showReplayCount =
8178 organization . features . includes ( 'session-replay' ) &&
8279 projectCanLinkToReplay ( organization , project ) &&
8380 data . issueCategory &&
8481 ! ! getReplayCountForIssue ( data . id , data . issueCategory ) ;
8582
86- const supergroup = organization . features . includes ( 'top-issues-ui' )
87- ? getSuperGroupForIssue ( data . id )
88- : undefined ;
89-
9083 const autofixRunExists = getAutofixRunExists ( data ) ;
9184 const seerFixable = isIssueQuickFixable ( data ) ;
9285 const showSeer =
@@ -126,7 +119,6 @@ export function GroupMetaRow({data, showAssignee, showLifetime = true}: Props) {
126119 </ CommentsLink >
127120 ) : null ,
128121 showReplayCount ? < IssueReplayCount group = { data } /> : null ,
129- supergroup ? < IssueSuperGroup supergroup = { supergroup } /> : null ,
130122 showSeer ? < IssueSeerBadge group = { data } key = "issue-seer-badge" /> : null ,
131123 logger ? (
132124 < LoggerAnnotation >
0 commit comments