diff --git a/skyroster-frontend/src/views/SchedulerView.vue b/skyroster-frontend/src/views/SchedulerView.vue
index 4667fd2..bb4de5e 100644
--- a/skyroster-frontend/src/views/SchedulerView.vue
+++ b/skyroster-frontend/src/views/SchedulerView.vue
@@ -25,8 +25,8 @@ const selectedFlight = ref(null)
const flightForm = ref(getEmptyForm())
-onMounted(() => {
- flightsStore.loadPlanningSchedules()
+onMounted(async () => {
+ await Promise.all([aircraftStore.fetchAircraftList(), flightsStore.loadPlanningSchedules()]);
})
const baseOptions = BASES.map(b => ({