🎨 Simplify arrow function syntax in watch callback

This commit is contained in:
2026-01-29 06:27:46 +00:00
parent 96a9c07184
commit 8c0e9c8d37

View File

@@ -326,7 +326,7 @@ const {
} = useChallongeTests(client, apiVersion, tournamentScope);
// Update perPage when selector changes
watch(perPage, (newValue) => {
watch(perPage, newValue => {
changePerPage(newValue);
});