@@ -109,7 +109,11 @@ export function SamplingBreakdown({orgSlug}: Props) {
)}
</Projects>
) : (
- <EmptyMessage>{t('No transactions in the last 24 hours')}</EmptyMessage>
+ <EmptyMessage>
+ {t(
+ 'There were no traces initiated from this project in the last 24 hours.'
+ )}
+ </EmptyMessage>
</Fragment>
@@ -18,7 +18,11 @@ describe('Server-Side Sampling - SamplingBreakdown', function () {
render(<SamplingBreakdown orgSlug={organization.slug} />);
- expect(screen.getByText('No transactions in the last 24 hours')).toBeInTheDocument();
+ expect(
+ screen.getByText(
+ )
+ ).toBeInTheDocument();
});
it('renders project breakdown', function () {