Skip to content

Commit

Permalink
style: Remove redundant copy
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeelaudibert committed Feb 7, 2025
1 parent c6c6c9d commit e45008d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/scenes/insights/EmptyStates/EmptyStates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export function StatelessInsightLoadingState({
<span>{humanFriendlyNumber(rowsRead || 0, 0)} </span>
<span>
{estimatedRows && estimatedRows >= rowsRead ? (
<span>/ ${humanFriendlyNumber(estimatedRows)} </span>
<span>/ {humanFriendlyNumber(estimatedRows)} </span>
) : null}
</span>
<span>rows</span>
Expand Down Expand Up @@ -278,7 +278,7 @@ export function InsightLoadingState({
{suggestedSamplingPercentage && !samplingPercentage ? (
<span data-attr="insight-loading-waiting-message">
Need to speed things up? Try reducing the date range, removing breakdowns, or
turning on <SamplingLink insightProps={insightProps} /> to speed things up.
turning on <SamplingLink insightProps={insightProps} />.
</span>
) : suggestedSamplingPercentage && samplingPercentage ? (
<>
Expand Down

0 comments on commit e45008d

Please sign in to comment.