Fix more stuff, particularly event handlers

This commit is contained in:
Jon Staab
2025-02-03 17:21:46 -08:00
parent 8d3433b167
commit 24045a7e2a
150 changed files with 424 additions and 392 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
import Button from "@lib/components/Button.svelte"
import {clip} from "@app/toast"
let {value} = $props()
const {value} = $props()
const copy = () => clip(value)
</script>
<Button on:click={copy} class="link-content">
<Button onclick={copy} class="link-content">
<Icon icon="bolt" size={3} class="inline-block translate-y-px" />
{value.slice(0, 16)}...
</Button>