Fix cancel follow request button sometimes saying “Follow back” (#31934)
This commit is contained in:
parent
c620452fd7
commit
6c76a7a907
2 changed files with 4 additions and 4 deletions
|
@ -75,10 +75,10 @@ export const FollowButton: React.FC<{
|
|||
label = <LoadingIndicator />;
|
||||
} else if (relationship.following && relationship.followed_by) {
|
||||
label = intl.formatMessage(messages.mutual);
|
||||
} else if (!relationship.following && relationship.followed_by) {
|
||||
label = intl.formatMessage(messages.followBack);
|
||||
} else if (relationship.following || relationship.requested) {
|
||||
label = intl.formatMessage(messages.unfollow);
|
||||
} else if (relationship.followed_by) {
|
||||
label = intl.formatMessage(messages.followBack);
|
||||
} else {
|
||||
label = intl.formatMessage(messages.follow);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue