🔧 Simplify state property access in tournament details component

This commit is contained in:
2026-01-29 14:29:50 +00:00
parent 1c880e39d1
commit c5f1bfa15a

View File

@@ -183,8 +183,8 @@
<template #tournament-details="{ tournament, isExpanded }"> <template #tournament-details="{ tournament, isExpanded }">
<TournamentDetail <TournamentDetail
:tournament-details="tournamentDetails" :tournament-details="tournamentDetails"
:loading="tournamentDetailsState.isLoading.value" :loading="tournamentDetailsState.isLoading"
:error="tournamentDetailsState.error.value" :error="tournamentDetailsState.error"
:is-expanded="isExpanded" :is-expanded="isExpanded"
/> />
</template> </template>