Don't show "unmute" state in column header

This commit is contained in:
diondiondion
2026-09-11 13:45:25 +02:00
parent 78d16f7ec5
commit 3f58d94905

View File

@@ -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;