summaryrefslogtreecommitdiff
path: root/ui/lib/components/CreateConversationForm.svelte
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-07-08 19:14:32 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-07-08 19:14:32 -0400
commit1b6028c71c6a16905dd7bf0dadbbc89a2a9475ad (patch)
tree4c13dabb81620ae0d04635b8836e31650e5a931f /ui/lib/components/CreateConversationForm.svelte
parent7b2d114b2444dc4bc66df22675d6dc02b7a8a238 (diff)
A few semantically-thin wrapper divs.
This is an extension of the previous commit: we don't need these divs _at all_ to achieve the layout we want, and we aren't attaching behaviour or semantics to them, so, out they go.
Diffstat (limited to 'ui/lib/components/CreateConversationForm.svelte')
-rw-r--r--ui/lib/components/CreateConversationForm.svelte10
1 files changed, 4 insertions, 6 deletions
diff --git a/ui/lib/components/CreateConversationForm.svelte b/ui/lib/components/CreateConversationForm.svelte
index d6056d3..812a5cf 100644
--- a/ui/lib/components/CreateConversationForm.svelte
+++ b/ui/lib/components/CreateConversationForm.svelte
@@ -16,9 +16,7 @@
}
</script>
-<div class="create-conversation">
- <form {onsubmit}>
- <input type="text" placeholder="start a conversation" bind:value={name} {disabled} />
- <button type="submit">&#x2795;</button>
- </form>
-</div>
+<form class="create-conversation" {onsubmit}>
+ <input type="text" placeholder="start a conversation" bind:value={name} {disabled} />
+ <button type="submit">&#x2795;</button>
+</form>