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
+3 -3
View File
@@ -19,7 +19,7 @@
children?: import("svelte").Snippet
}
let {children}: Props = $props()
const {children}: Props = $props()
const startChat = () => pushModal(ChatStart)
@@ -30,14 +30,14 @@
let term = $state("")
let chats = $derived($chatSearch.searchOptions(term))
const chats = $derived($chatSearch.searchOptions(term))
</script>
<SecondaryNav>
<SecondaryNavSection>
<SecondaryNavHeader>
Chats
<Button on:click={startChat}>
<Button onclick={startChat}>
<Icon icon="add-circle" />
</Button>
</SecondaryNavHeader>