From 3010dd7000126654092d95c127ef7361c2a4e977 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Sat, 2 Nov 2024 21:26:41 -0400 Subject: Address outstanding lint issues. --- ui/lib/components/CreateChannelForm.svelte | 2 +- ui/lib/components/Message.svelte | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'ui/lib/components') 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) { diff --git a/ui/lib/components/Message.svelte b/ui/lib/components/Message.svelte index 9376cbe..0b91b66 100644 --- a/ui/lib/components/Message.svelte +++ b/ui/lib/components/Message.svelte @@ -15,6 +15,7 @@
{at}
+ {@html renderedBody}
-- cgit v1.2.3