Add computed property for tournament details

This commit is contained in:
2026-01-29 02:03:06 +00:00
parent 5e7e411a52
commit 4ac4b9a3f6

View File

@@ -464,6 +464,9 @@ const maskedApiKey = computed(() => {
return apiKey.value.slice(0, 4) + '•••••••' + apiKey.value.slice(-4); return apiKey.value.slice(0, 4) + '•••••••' + apiKey.value.slice(-4);
}); });
// Tournament details computed from async state
const tournamentDetails = computed(() => tournamentDetailsState.data.value);
// Create API client reactively based on version, key, and OAuth status // Create API client reactively based on version, key, and OAuth status
const client = computed(() => { const client = computed(() => {
if (apiVersion.value === 'v1') { if (apiVersion.value === 'v1') {