Fix plus icon in Follow button

This commit is contained in:
Alex Gleason 2024-11-13 16:00:49 -06:00
parent 15483208ee
commit f80b96c898
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 3 additions and 3 deletions

View File

@ -226,10 +226,10 @@ const ActionButton: React.FC<IActionButton> = ({ account, actionType, small }) =
let icon: string | undefined; let icon: string | undefined;
if (isFollowing) { if (blockedBy) {
icon = plusIcon;
} else if (blockedBy) {
icon = banIcon; icon = banIcon;
} else if (!isFollowing) {
icon = plusIcon;
} }
return ( return (