From f80b96c898af6a9caf469f3ea2edaebf7ff7b69e Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 13 Nov 2024 16:00:49 -0600 Subject: [PATCH] Fix plus icon in Follow button --- src/features/ui/components/action-button.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 (