diff --git a/static/app/views/explore/logs/confidenceFooter.tsx b/static/app/views/explore/logs/confidenceFooter.tsx index 775b22ac0850af..ad3d43e987e6da 100644 --- a/static/app/views/explore/logs/confidenceFooter.tsx +++ b/static/app/views/explore/logs/confidenceFooter.tsx @@ -14,12 +14,14 @@ import type {RawLogCounts} from 'sentry/views/explore/logs/useLogsQuery'; interface ConfidenceFooterProps { chartInfo: ChartInfo; + hasUserQuery: boolean; isLoading: boolean; rawLogCounts: RawLogCounts; } export function ConfidenceFooter({ chartInfo: currentChartInfo, + hasUserQuery, isLoading, rawLogCounts, }: ConfidenceFooterProps) { @@ -28,6 +30,7 @@ export function ConfidenceFooter({ ) }