Update welshman

This commit is contained in:
Jon Staab
2024-10-29 13:20:59 -07:00
parent 8e97dd0c69
commit 3f143b7aa2
8 changed files with 96 additions and 33 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
<script lang="ts">
import Confirm from "@lib/components/Confirm.svelte"
import {publishDelete} from "@app/commands"
import {clearModals} from '@app/modal'
export let url
export let event
@@ -8,7 +9,7 @@
const confirm = async () => {
await publishDelete({event, relays: [url]})
history.back()
clearModals()
}
</script>