From 3f58d94905f5053a8432a0ec9e6428d22e5c2b7e Mon Sep 17 00:00:00 2001 From: diondiondion Date: Fri, 11 Sep 2026 13:45:25 +0200 Subject: [PATCH] Don't show "unmute" state in column header --- .../mastodon/features/account_timeline/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/account_timeline/index.tsx b/app/javascript/mastodon/features/account_timeline/index.tsx index 264a3521910..46b6a2919cd 100644 --- a/app/javascript/mastodon/features/account_timeline/index.tsx +++ b/app/javascript/mastodon/features/account_timeline/index.tsx @@ -160,7 +160,12 @@ const InnerTimeline: FC<{ account: Account; multiColumn: boolean }> = ({ const ColumnHeaderFollowButton: FC<{ accountId: string }> = ({ accountId }) => { const reference = useFollowReference('profile'); const { onClick, link, label, icon, disabled, secondary, hidden } = - useFollowButton({ accountId, labelLength: 'long', reference }); + useFollowButton({ + accountId, + withUnmute: false, + labelLength: 'long', + reference, + }); if (hidden) { return null;