fix date on analytics
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Lee 2023-10-28 01:20:28 +01:00
parent f801ee7088
commit 239b177a14

@ -81,7 +81,17 @@ export default function AnalyticsChart({
labels.push("today"); labels.push("today");
continue; continue;
} }
labels.push(formatTimeAgo(playerCountHistory[i].time)); if (i == playerCountHistory.length - 2) {
labels.push("yesterday");
continue;
}
if (i >= 1) {
const date = playerCountHistory[i - 1].time;
labels.push(formatTimeAgo(date));
} else {
const date = playerCountHistory[i].time;
labels.push(formatTimeAgo(date));
}
} }
const data = { const data = {