From f2a8b6f877d50662ef4433ee734ab97d4035fd86 Mon Sep 17 00:00:00 2001 From: April Hall Date: Sat, 22 Feb 2025 02:52:35 -0500 Subject: [PATCH] docs: Add TODO comment --- src/lib/components/forms/channelDialog.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/components/forms/channelDialog.svelte b/src/lib/components/forms/channelDialog.svelte index 995d1a4..af78055 100644 --- a/src/lib/components/forms/channelDialog.svelte +++ b/src/lib/components/forms/channelDialog.svelte @@ -13,6 +13,10 @@ onResult: ({ result }) => { if (result.type === 'success') { open = false; + // TODO (reactive channels) + // Send an event to the channel list to tell it to re-index all of the channels + // we *could* just reload, but then there would be a flash of un-rendered content + // and I would like to avoid that if possible } }, });