fix(tui): increase history buffer to 60 so sparkline fills completely

This commit is contained in:
2026-05-16 14:01:25 -04:00
parent fc7b6f72e1
commit adf46a1654
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ package monitor
import "time"
const maxHistoryLen = 30
const maxHistoryLen = 60
type SiteHistory struct {
Latencies []time.Duration