From 4da9557d02460ca6787e0f8dceb2a1d60c0b6bda Mon Sep 17 00:00:00 2001 From: YeungKC <11473691+YeungKC@users.noreply.github.com> Date: Mon, 7 Sep 2026 16:28:25 +0900 Subject: [PATCH] fix: preserve side panel during message selection --- lib/ui/home/chat/chat_page.dart | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/ui/home/chat/chat_page.dart b/lib/ui/home/chat/chat_page.dart index e137ae99f7..cc5cf5375c 100644 --- a/lib/ui/home/chat/chat_page.dart +++ b/lib/ui/home/chat/chat_page.dart @@ -66,11 +66,6 @@ class ChatPage extends HookConsumerWidget { useValueListenable(chatSideNotifier); - ref.listen(hasSelectedMessageProvider, (previous, hasSelectedMessage) { - if (!hasSelectedMessage) return; - chatSideNotifier.clear(); - }); - final chatContainerPage = MaterialPage( key: const ValueKey('chatContainer'), name: 'chatContainer',