summaryrefslogtreecommitdiff
path: root/ui/lib/components/CreateConversationForm.svelte
diff options
context:
space:
mode:
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>