From f48fab872ead1420caedcde5490c70c4412a41b7 Mon Sep 17 00:00:00 2001 From: RetroSunstar <57507616+RetroSunstar@users.noreply.github.com> Date: Fri, 21 Aug 2026 21:12:14 +0100 Subject: [PATCH] Adds a small padding for labeller avatars in group chat 'Add people' selector (#11422) --- src/components/dms/ChatProfileTabs.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/dms/ChatProfileTabs.tsx b/src/components/dms/ChatProfileTabs.tsx index d5ae8698ee..65dfc97097 100644 --- a/src/components/dms/ChatProfileTabs.tsx +++ b/src/components/dms/ChatProfileTabs.tsx @@ -95,6 +95,8 @@ function Tab({ moderation.ui('displayName'), ) + const isLabeler = profile.associated?.labeler + const onPressItem = useCallback( (did: string) => { onRemove?.(did) @@ -111,7 +113,7 @@ function Tab({ a.border, a.justify_center, a.rounded_lg, - a.pl_xs, + isLabeler ? a.pl_sm : a.pl_xs, a.pr_sm, a.py_xs, t.atoms.border_contrast_low,