diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-11-02 21:26:41 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-11-02 21:26:41 -0400 |
| commit | 3010dd7000126654092d95c127ef7361c2a4e977 (patch) | |
| tree | c6cbaf8ba4c5b58019d57a092f26444c24e51e1a /ui/lib/components/CreateChannelForm.svelte | |
| parent | 22ce0549e20ee397cf5953bd6b7aafc752deaa28 (diff) | |
Address outstanding lint issues.
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) { |
