Add more airlines and fix edit bugs

This commit is contained in:
2026-04-18 16:45:13 +10:00
parent 63d6fb9e76
commit d90f338321
12 changed files with 111 additions and 28 deletions
+3
View File
@@ -52,6 +52,7 @@ export interface Airport {
created_at: string | null
updated_at: string | null
timezone: string
display_code: string
}
export type Continent = {
@@ -81,6 +82,7 @@ export interface Airline {
logo: string | null
country_id: number
country?: Country
display_name: string
}
@@ -96,6 +98,7 @@ export interface Aircraft {
wtc: string
created_at: string | null
updated_at: string | null
display_name: string
}
export interface SeatType {