diff --git a/components/AssignedCrew.vue b/components/AssignedCrew.vue index 481dd67..bc0cd61 100644 --- a/components/AssignedCrew.vue +++ b/components/AssignedCrew.vue @@ -29,6 +29,7 @@ defineProps<{ edit?: boolean }>(); const usersStore = useUsersStore(); +await usersStore.fetch(); const assignedIds = defineModel>({ required: true }); const assigned = computed( () => [...assignedIds.value].map( diff --git a/components/CardEvent.vue b/components/CardEvent.vue index 6a4d5a0..1a81b64 100644 --- a/components/CardEvent.vue +++ b/components/CardEvent.vue @@ -5,9 +5,6 @@