From 6541e06b622968d936f915d66b2778ec4f33090c Mon Sep 17 00:00:00 2001 From: Alejandro Date: Wed, 14 Jan 2026 21:04:09 +0100 Subject: [PATCH] feat: disable pointer events on group message preview (#98) Add pointer-events-none to the message preview div in GroupListViewer to ensure clicks always pass through to the parent group item's onClick handler. This prevents issues where clicks on the preview text (UserName or RichText components) might not trigger group selection. Co-authored-by: Claude --- src/components/GroupListViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GroupListViewer.tsx b/src/components/GroupListViewer.tsx index 79b52df..249a194 100644 --- a/src/components/GroupListViewer.tsx +++ b/src/components/GroupListViewer.tsx @@ -94,7 +94,7 @@ const GroupListItem = memo(function GroupListItem({ {/* Last message preview - hide images and event embeds */} {lastMessageAuthor && lastMessageContent && ( -
+