Merge branch 'master' of github.com:HumanoidSandvichDispenser/availabili.tf

master
John Montagu, the 4th Earl of Sandvich 2025-09-24 13:39:49 -07:00
commit da79731868
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
1 changed files with 4 additions and 1 deletions

View File

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