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
@@ -6,7 +6,7 @@
import Tippy from "@lib/components/Tippy.svelte"
import EmojiPicker from "@lib/components/EmojiPicker.svelte"
let {...props} = $props()
const {...props} = $props()
const open = () => popover?.show()
@@ -35,7 +35,7 @@
component={EmojiPicker}
props={{onClick}}
params={{trigger: "manual", interactive: true}}>
<Button on:click={open} class={props.class}>
<Button onclick={open} class={props.class}>
{@render props.children?.()}
</Button>
</Tippy>