From a434d73a087d38b7862541b973f3ad3ab91e99b8 Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 29 Jan 2026 10:02:42 +0100 Subject: [PATCH] [Glitch] Prevent account note from appearing on your own profile Port 8a42689268c985a2687ad35735707cd498d0b708 to glitch-soc Signed-off-by: Claire --- .../account_timeline/components/account_header.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app/javascript/flavours/glitch/features/account_timeline/components/account_header.tsx b/app/javascript/flavours/glitch/features/account_timeline/components/account_header.tsx index 877eb0bd35..f594ba5bc9 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/components/account_header.tsx +++ b/app/javascript/flavours/glitch/features/account_timeline/components/account_header.tsx @@ -166,11 +166,13 @@ export const AccountHeader: React.FC<{ {!suspendedOrHidden && (
- {me && account.id !== me && isRedesignEnabled() ? ( - - ) : ( - - )} + {me && + account.id !== me && + (isRedesignEnabled() ? ( + + ) : ( + + ))}