From 8a42689268c985a2687ad35735707cd498d0b708 Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 29 Jan 2026 10:02:42 +0100 Subject: [PATCH] Prevent account note from appearing on your own profile (#37653) --- .../account_timeline/components/account_header.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/app/javascript/mastodon/features/account_timeline/components/account_header.tsx b/app/javascript/mastodon/features/account_timeline/components/account_header.tsx index 695a05521d..24a21a2011 100644 --- a/app/javascript/mastodon/features/account_timeline/components/account_header.tsx +++ b/app/javascript/mastodon/features/account_timeline/components/account_header.tsx @@ -162,11 +162,13 @@ export const AccountHeader: React.FC<{ {!suspendedOrHidden && (
- {me && account.id !== me && isRedesignEnabled() ? ( - - ) : ( - - )} + {me && + account.id !== me && + (isRedesignEnabled() ? ( + + ) : ( + + ))}