+
{t('People')}
+ {hasParticipants && (
+
+
+ {t('participating')}
+
+ )}
+ {hasViewers && (
+
+
+ {t('viewed')}
+
+ )}
+
+ );
+}
diff --git a/static/app/views/issueDetails/streamline/sidebar.tsx b/static/app/views/issueDetails/streamline/sidebar.tsx
index cbce1573b23486..f6643ea774ea3c 100644
--- a/static/app/views/issueDetails/streamline/sidebar.tsx
+++ b/static/app/views/issueDetails/streamline/sidebar.tsx
@@ -2,12 +2,14 @@ import styled from '@emotion/styled';
import ErrorBoundary from 'sentry/components/errorBoundary';
import {StreamlinedExternalIssueList} from 'sentry/components/group/externalIssuesList/streamlinedExternalIssueList';
+import * as SidebarSection from 'sentry/components/sidebarSection';
import {space} from 'sentry/styles/space';
import type {Event} from 'sentry/types/event';
import type {Group} from 'sentry/types/group';
import type {Project} from 'sentry/types/project';
import StreamlinedActivitySection from 'sentry/views/issueDetails/streamline/activitySection';
import FirstLastSeenSection from 'sentry/views/issueDetails/streamline/firstLastSeenSection';
+import PeopleSection from 'sentry/views/issueDetails/streamline/peopleSection';
type Props = {
group: Group;
@@ -27,6 +29,8 @@ export default function StreamlinedSidebar({group, event, project}: Props) {
)}