diff options
Diffstat (limited to 'ui/lib/components/CreateChannelForm.svelte')
| -rw-r--r-- | ui/lib/components/CreateChannelForm.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/lib/components/CreateChannelForm.svelte b/ui/lib/components/CreateChannelForm.svelte index 6b50fb1..6eee5db 100644 --- a/ui/lib/components/CreateChannelForm.svelte +++ b/ui/lib/components/CreateChannelForm.svelte @@ -5,7 +5,7 @@ let pending = false; $: disabled = pending; - async function handleSubmit(event) { + async function handleSubmit() { pending = true; const response = await createChannel(name); if (200 <= response.status && response.status < 300) { |
