Added splash page

This commit is contained in:
2026-06-21 18:52:25 +10:00
parent 07e2796e09
commit a39589ee6f
13 changed files with 1030 additions and 29 deletions
+1 -2
View File
@@ -21,13 +21,12 @@ const props = defineProps<{
selectedFlightId?: number | null
initialView?: ProfileView
followStatus: string
flight_api_url: string
flightCount: number
}>()
// ── Flights state ─────────────────────────────────────────────────────────────
const { flights, flightsLoading } = useFlights(props.flight_api_url)
const { flights, flightsLoading } = useFlights(`/internal/user/${props.user.name}/flights`)
const localSelectedFlightId = ref(props.selectedFlightId ?? null)
// ── Filter state ──────────────────────────────────────────────────────────────