Compare commits

..

No commits in common. "da79731868c26e3bb7d516c1c68859f621d3f2c5" and "811adc2f02dbbba6e3ebf873619a5b6a98f72c46" have entirely different histories.

1 changed files with 1 additions and 4 deletions

View File

@ -62,10 +62,7 @@ onMounted(() => {
if (eventId.value) { if (eventId.value) {
eventsStore.fetchEvent(eventId.value) eventsStore.fetchEvent(eventId.value)
.then((response) => { .then((response) => {
teamsStore.fetchTeam(response.teamId) teamsStore.fetchTeam(response.teamId);
.then((response) => {
team.value = response.team;
});
}); });
} }
}); });