fix(evaluations): prevent duplicate leaderboard API requests on navigation (#25934)

This commit is contained in:
G30 2026-06-16 18:16:27 -04:00 committed by GitHub
parent 5f3a628a8d
commit 6f2e97aa58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,11 +2,7 @@
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
import Evaluations from '$lib/components/admin/Evaluations.svelte';
onMount(() => {
goto('/admin/evaluations/leaderboard');
});
</script>
<Evaluations />