Handle deleted threads

This commit is contained in:
Jon Staab
2024-10-24 11:52:02 -07:00
parent 33c8142eda
commit dd7c0f3b07
13 changed files with 102 additions and 68 deletions
+2 -1
View File
@@ -3,12 +3,13 @@
export let href
export let external = false
export let replaceState = false
const go = (e: Event) => {
if (!external) {
e.preventDefault()
goto(href)
goto(href, {replaceState})
}
}
</script>