🔧 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 }">
<TournamentDetail
:tournament-details="tournamentDetails"
:loading="tournamentDetailsState.isLoading.value"
:error="tournamentDetailsState.error.value"
:loading="tournamentDetailsState.isLoading"
:error="tournamentDetailsState.error"
:is-expanded="isExpanded"
/>
</template>