mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-27 03:35:21 +00:00
8 lines
152 B
Svelte
8 lines
152 B
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { onMount } from 'svelte';
|
|
|
|
onMount(() => {
|
|
goto('/admin/users');
|
|
});
|
|
</script>
|