diff --git a/src/components/StatsPanel.tsx b/src/components/StatsPanel.tsx index bebedaa..c77bf86 100644 --- a/src/components/StatsPanel.tsx +++ b/src/components/StatsPanel.tsx @@ -109,8 +109,9 @@ export function StatsPanel({ stats, loading, periodDays, source, currentUD, anim })()} delta={prevTxCount !== null ? (stats.transactionCount > prevTxCount ? 'up' : stats.transactionCount < prevTxCount ? 'down' : null) : null} /> - {/* Couverture géo — uniquement en mode live */} - {source === 'live' && geoPct !== null && ( + {/* Couverture géo — uniquement en mode live, masquée en animation + (visibleTransactions ne contient que du géolocalisé → toujours 100%) */} + {source === 'live' && geoPct !== null && !animationLabel && (
Géolocalisées