Fixed Chart Axes

This commit is contained in:
2026-07-20 20:34:43 +10:00
parent fe642300b6
commit 3abd66001b
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ export function getCountries(flights: Flight[], upcomingFlights: Flight[]) {
const result = {
countries: sorted,
series: [
{ name: 'Departed', data: sorted.map(s => s.past) },
{ name: 'Flown', data: sorted.map(s => s.past) },
{ name: 'Upcoming', data: sorted.map(s => s.upcoming) },
],
}