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;