Added API

This commit is contained in:
2026-06-21 12:52:30 +10:00
parent 05ca994253
commit 5850c849d0
32 changed files with 248 additions and 107 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ const props = defineProps<{
user: User
flight: Flight
flightCount: number
isFollowing: boolean
followStatus: string
canEdit: boolean
canView: boolean
}>()
@@ -28,7 +28,7 @@ const props = defineProps<{
<ProfileLayout
:canView="canView"
:user="user"
:is-following="isFollowing"
:followStatus="followStatus"
:flight-count="flightCount"
:loading="false">
<Head :title="`${flight.flight_number ?? user.name + '\'s Flight'}`" />