From 56cbbfdc7a9a8e7de180ec611f91f52190bf9336 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 21:23:34 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=91=20Rename=20and=20refactor=20Challo?= =?UTF-8?q?nge=20API=20key=20methods=20for=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../websites/pokedex.online/src/views/AuthenticationHub.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/websites/pokedex.online/src/views/AuthenticationHub.vue b/code/websites/pokedex.online/src/views/AuthenticationHub.vue index 4509b1e..a921bbb 100644 --- a/code/websites/pokedex.online/src/views/AuthenticationHub.vue +++ b/code/websites/pokedex.online/src/views/AuthenticationHub.vue @@ -345,9 +345,9 @@ const discordLoading = ref(false); // Challonge API Key const { - apiKey: challongeApiKey, - save: saveApiKey, - delete: deleteApiKey + storedKey: challongeApiKey, + saveApiKey, + clearApiKey } = useChallongeApiKey(); const newChallongeApiKey = ref(''); const hasChallongeApiKey = computed(() => !!challongeApiKey.value);