fix: function community import

This commit is contained in:
Timothy Jaeryang Baek 2024-11-19 14:00:58 -08:00
parent 450f5292ef
commit d8c5262161

View File

@ -0,0 +1,8 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { onMount } from 'svelte';
onMount(() => {
goto('/admin/functions/create');
});
</script>