From 4ae4d50ff227754e060689ac261899be0e8e5971 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 18:41:09 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Clean=20up=20unnecessary=20whitespa?= =?UTF-8?q?ce=20in=20ChallongeTest.vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/views/ChallongeTest.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/websites/pokedex.online/src/views/ChallongeTest.vue b/code/websites/pokedex.online/src/views/ChallongeTest.vue index 2c2c945..e4d0114 100644 --- a/code/websites/pokedex.online/src/views/ChallongeTest.vue +++ b/code/websites/pokedex.online/src/views/ChallongeTest.vue @@ -423,7 +423,7 @@ const client = computed(() => { // Smart priority based on scope selection: // - APPLICATION scope: prefer client credentials (they're designed for this) // - USER scope: prefer OAuth user tokens or API key (client creds don't work well here) - + if (tournamentScope.value === ScopeType.APPLICATION) { // APPLICATION scope - prefer client credentials if (isClientCredsAuthenticated.value && clientCredsToken.value) { @@ -455,7 +455,7 @@ const client = computed(() => { ); } } - + // Fallback: try API key if (apiKey.value) { console.log('🔑 Using API Key (fallback)'); @@ -464,7 +464,7 @@ const client = computed(() => { { debug: debugMode.value } ); } - + return null; } });