From 058cf36d5abef673bfae836d7b8eb669d13adb53 Mon Sep 17 00:00:00 2001 From: Jannis Braun <151788261+TheZwiss@users.noreply.github.com> Date: Sun, 10 May 2026 20:50:05 +0200 Subject: [PATCH] feat(mobile): MobileChatScreen members button shows for group DMs --- .../src/components/layout/MobileChatScreen.tsx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/packages/web/src/components/layout/MobileChatScreen.tsx b/packages/web/src/components/layout/MobileChatScreen.tsx index 14429a28..ce7655fa 100644 --- a/packages/web/src/components/layout/MobileChatScreen.tsx +++ b/packages/web/src/components/layout/MobileChatScreen.tsx @@ -82,10 +82,22 @@ export function MobileChatScreen({ params }: MobileChatScreenProps) { - {!isDm && ( + {/* Members button — shown for space channels AND group DMs. 1-on-1 + DMs have no roster, so it stays hidden there. Tapping a space- + channel button pushes the regular `members` screen; tapping a + group-DM button pushes the new `group-dm-info` screen so the user + lands on the full info + management surface. */} + {(!isDm || isGroup) && (