🎨 Improve code readability by reformatting and updating function definitions and comments

This commit is contained in:
2026-01-28 18:18:55 +00:00
parent 1944b43af8
commit a24f766e37
154 changed files with 7261 additions and 117 deletions

View File

@@ -57,7 +57,8 @@
API Key Mode - showing only created tournaments
</div>
<span class="scope-hint">
Shows tournaments you created and tournaments where you're an admin
Shows tournaments you created and tournaments where you're an
admin
</span>
</div>
@@ -474,7 +475,17 @@ async function testListTournaments(resetPagination = true) {
page: currentPage.value,
perPage: 100,
scope: 'USER',
states: ['pending', 'in_progress', 'ended'],
states: [
'pending',
'checking_in',
'checked_in',
'accepting_predictions',
'group_stages_underway',
'group_stages_finalized',
'underway',
'awaiting_review',
'complete'
],
resultsCount: result.length,
isAuthenticated: isAuthenticated.value,
authType: isAuthenticated.value ? 'OAuth' : 'API Key',