From 8c0e9c8d375c5f8cc6f86afa82147a611507ef37 Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 06:27:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Simplify=20arrow=20function=20sy?= =?UTF-8?q?ntax=20in=20watch=20callback?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/src/views/ChallongeTest.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/websites/pokedex.online/src/views/ChallongeTest.vue b/code/websites/pokedex.online/src/views/ChallongeTest.vue index c01902d..06aafd2 100644 --- a/code/websites/pokedex.online/src/views/ChallongeTest.vue +++ b/code/websites/pokedex.online/src/views/ChallongeTest.vue @@ -326,7 +326,7 @@ const { } = useChallongeTests(client, apiVersion, tournamentScope); // Update perPage when selector changes -watch(perPage, (newValue) => { +watch(perPage, newValue => { changePerPage(newValue); });