From 87af2692e51b0ea930c337960e12f63a9d613fcd Mon Sep 17 00:00:00 2001 From: asncx <1337balazs@gmail.com> Date: Wed, 9 Apr 2025 20:56:49 +0200 Subject: [PATCH] fix: folder chat rename --- src/lib/components/layout/Sidebar/ChatItem.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/components/layout/Sidebar/ChatItem.svelte b/src/lib/components/layout/Sidebar/ChatItem.svelte index 0c15a334e..96631e125 100644 --- a/src/lib/components/layout/Sidebar/ChatItem.svelte +++ b/src/lib/components/layout/Sidebar/ChatItem.svelte @@ -83,6 +83,8 @@ currentChatPage.set(1); await chats.set(await getChatList(localStorage.token, $currentChatPage)); await pinnedChats.set(await getPinnedChatList(localStorage.token)); + + dispatch('change'); } };