@@ -6,7 +6,7 @@ import type {Virtualizer} from '@tanstack/react-virtual';
66import { useVirtualizer , useWindowVirtualizer } from '@tanstack/react-virtual' ;
77
88import { Button } from '@sentry/scraps/button' ;
9- import { Flex , Stack } from '@sentry/scraps/layout' ;
9+ import { Container , Flex , Stack } from '@sentry/scraps/layout' ;
1010import { ExternalLink } from '@sentry/scraps/link' ;
1111import { Tooltip } from '@sentry/scraps/tooltip' ;
1212
@@ -666,22 +666,22 @@ function EmptyRenderer({
666666 < EmptyStateText size = "xl" > { t ( 'No logs found yet' ) } </ EmptyStateText >
667667 < EmptyStateText size = "md" >
668668 { tct (
669- 'We scanned [bytesScanned] already but did not find any matching logs yet.[break]You can narrow your time range or you can [continueScanning].' ,
670- {
671- bytesScanned : < FileSize bytes = { bytesScanned } base = { 2 } /> ,
672- break : < br /> ,
673- continueScanning : (
674- < Button
675- priority = "link"
676- onClick = { resumeAutoFetch }
677- aria-label = { t ( 'continue scanning' ) }
678- >
679- { t ( 'Continue Scanning' ) }
680- </ Button >
681- ) ,
682- }
669+ 'We scanned [bytesScanned] so far but have not found anything matching your filters' ,
670+ { bytesScanned : < FileSize bytes = { bytesScanned } base = { 2 } /> }
683671 ) }
684672 </ EmptyStateText >
673+ < EmptyStateText size = "md" >
674+ { t ( 'We can keep digging or you can narrow down your search.' ) }
675+ </ EmptyStateText >
676+ < Container paddingTop = "md" >
677+ < Button
678+ priority = "default"
679+ onClick = { resumeAutoFetch }
680+ aria-label = { t ( 'continue scanning' ) }
681+ >
682+ { t ( 'Continue Scanning' ) }
683+ </ Button >
684+ </ Container >
685685 </ EmptyStateWarning >
686686 </ TableStatus >
687687 ) ;
0 commit comments