Skip to content

Commit 72f9440

Browse files
authored
Add redirection to HTMLChat on page mount
1 parent 1a3ba22 commit 72f9440

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<script lang="ts">
2+
import { onMount } from 'svelte';
3+
import { goto } from '$app/navigation';
4+
5+
onMount(() => {
6+
goto('/beta/HTMLChat', { replaceState: true });
7+
});
8+
</script>

0 commit comments

Comments
 (0)