- To complete this challenge you must fly with every current member airline of
- {{ alliance.name }}. Alliance membership changes over time, so the
- required airlines reflect the current roster.
+ To complete this challenge you must fly with at least one member airline from each of
+ the three major alliances. Unlike the individual alliance challenges, you don't need
+ to fly every airline in an alliance — just one flight per alliance is enough.
- Codeshare flights do not count, the operating carrier must be a member of {{alliance.name}}.
+ Codeshare flights do not count, the operating carrier must be a member of the
+ alliance.
+ To complete this challenge you must fly with at least one member airline from each of
+ the three major alliances. Unlike the individual alliance challenges, you don't need
+ to fly every airline in an alliance — just one flight per alliance is enough.
+
+
+
+ Codeshare flights do not count, the operating carrier must be a member of the
+ alliance.
+
+
+
+
+
diff --git a/resources/js/Pages/Profile/UserAchievement.vue b/resources/js/Pages/Profile/UserAchievement.vue
index bcc1fcc..af92021 100644
--- a/resources/js/Pages/Profile/UserAchievement.vue
+++ b/resources/js/Pages/Profile/UserAchievement.vue
@@ -26,6 +26,7 @@ const props = defineProps<{
airlines: Airline[]
continents: Continent[]
aircraft_families: Record
+ majorAlliances: Alliance[]
achievementCount: number
canView: boolean
}>()
@@ -63,7 +64,7 @@ const unlocked = computed(() => {
You are viewing {{user.name}}'s progress in this achievement. If you would like to see your progress, please
- click here.
+ click here.
@@ -116,6 +117,7 @@ const unlocked = computed(() => {
:alliance="alliance"
:continents="continents"
:families="aircraft_families"
+ :major-alliances="majorAlliances"
/>