allow a bit more latency in the one minute chart points (#1247)

This commit is contained in:
henrygd
2025-10-07 17:28:48 -04:00
parent 1623f5e751
commit d352ce00fa

View File

@@ -129,7 +129,7 @@ export const updateFavicon = (() => {
export const chartTimeData: ChartTimeData = {
"1m": {
type: "1m",
expectedInterval: 1000,
expectedInterval: 2000, // allow a bit of latency for one second updates (#1247)
label: () => t`1 minute`,
format: (timestamp: string) => hourWithSeconds(timestamp),
ticks: 3,