Browse Source

fix: function community import

Timothy Jaeryang Baek 5 months ago
parent
commit
d8c5262161
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/routes/(app)/workspace/functions/create/+page.svelte

+ 8 - 0
src/routes/(app)/workspace/functions/create/+page.svelte

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