diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 21:47:11 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 21:47:11 -0500 |
commit | 71209bb3aca1104773ee9fab20ec9f9ab4fc3ad2 (patch) | |
tree | fc2de0e2a1ed13b972628cca2e7b6fa7c38ecfe8 /src/view/com/profile/FollowButton.tsx | |
parent | ad9da82612a33a796bcb2c679dbff357f4829dc8 (diff) | |
download | voidsky-71209bb3aca1104773ee9fab20ec9f9ab4fc3ad2.tar.zst |
Implement popular & following views on home screen
Diffstat (limited to 'src/view/com/profile/FollowButton.tsx')
-rw-r--r-- | src/view/com/profile/FollowButton.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/profile/FollowButton.tsx b/src/view/com/profile/FollowButton.tsx index f24c3d0c9..7a194cee9 100644 --- a/src/view/com/profile/FollowButton.tsx +++ b/src/view/com/profile/FollowButton.tsx @@ -42,7 +42,7 @@ const FollowButton = observer( return ( <Button - type={isFollowing ? 'default' : 'primary'} + type={isFollowing ? 'default' : 'inverted'} onPress={onToggleFollowInner} label={isFollowing ? 'Unfollow' : 'Follow'} /> |