diff --git a/public/app/features/inspector/InspectStatsTab.tsx b/public/app/features/inspector/InspectStatsTab.tsx index 3977cffcb2b..16886e34262 100644 --- a/public/app/features/inspector/InspectStatsTab.tsx +++ b/public/app/features/inspector/InspectStatsTab.tsx @@ -1,3 +1,4 @@ +import { css } from '@emotion/css'; import React from 'react'; import { PanelData, QueryResultMetaStat, TimeZone } from '@grafana/data'; @@ -17,7 +18,6 @@ export const InspectStatsTab = ({ data, timeZone }: InspectStatsTabProps) => { if (!data.request) { return null; } - let stats: QueryResultMetaStat[] = []; const requestTime = data.request.endTime ? data.request.endTime - data.request.startTime : -1; @@ -64,7 +64,7 @@ export const InspectStatsTab = ({ data, timeZone }: InspectStatsTabProps) => { const traceIdsStatsTableName = t('dashboard.inspect-stats.data-traceids', 'Trace IDs'); return ( -