diff --git a/static/app/views/issueDetails/streamline/activitySection.spec.tsx b/static/app/views/issueDetails/streamline/activitySection.spec.tsx index 9b78e1f117e00e..fd5540bc6e82f8 100644 --- a/static/app/views/issueDetails/streamline/activitySection.spec.tsx +++ b/static/app/views/issueDetails/streamline/activitySection.spec.tsx @@ -111,7 +111,7 @@ describe('StreamlinedActivitySection', function () { expect(await screen.findByText('Test Note 1')).toBeInTheDocument(); expect(await screen.findByText('Test Note 7')).toBeInTheDocument(); expect(screen.queryByText('Test Note 6')).not.toBeInTheDocument(); - expect(await screen.findByText('4 comments hidden')).toBeInTheDocument(); + expect(await screen.findByText('4 activities hidden')).toBeInTheDocument(); await userEvent.click(await screen.findByRole('button', {name: 'Show all activity'})); expect(await screen.findByText('Test Note 6')).toBeInTheDocument(); diff --git a/static/app/views/issueDetails/streamline/activitySection.tsx b/static/app/views/issueDetails/streamline/activitySection.tsx index 4ca9417adefc32..15e0bf96e6b8c2 100644 --- a/static/app/views/issueDetails/streamline/activitySection.tsx +++ b/static/app/views/issueDetails/streamline/activitySection.tsx @@ -189,7 +189,7 @@ export default function StreamlinedActivitySection({group}: {group: Group}) { borderless size="zero" > - {t('%s comments hidden', group.activity.length - 3)} + {t('%s activities hidden', group.activity.length - 3)} } icon={}