This commit is contained in:
Timothy Jaeryang Baek
2025-11-26 23:54:55 -05:00
parent 457af65df6
commit 5a32ea9b49

View File

@@ -2,11 +2,7 @@
import { goto } from '$app/navigation'; import { goto } from '$app/navigation';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import Users from '$lib/components/admin/Users.svelte'; onMount(async () => {
await goto('/admin/users/overview');
onMount(() => {
goto('/admin/users/overview');
}); });
</script> </script>
<Users />