diff --git a/src/features/ui/components/action-button.tsx b/src/features/ui/components/action-button.tsx index 8a2f6144c..c0c3e8650 100644 --- a/src/features/ui/components/action-button.tsx +++ b/src/features/ui/components/action-button.tsx @@ -226,10 +226,10 @@ const ActionButton: React.FC = ({ account, actionType, small }) = let icon: string | undefined; - if (isFollowing) { - icon = plusIcon; - } else if (blockedBy) { + if (blockedBy) { icon = banIcon; + } else if (!isFollowing) { + icon = plusIcon; } return (