about summary refs log tree commit diff
path: root/src/view/com/profile/FollowButton.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-16 21:47:11 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-16 21:47:11 -0500
commit71209bb3aca1104773ee9fab20ec9f9ab4fc3ad2 (patch)
treefc2de0e2a1ed13b972628cca2e7b6fa7c38ecfe8 /src/view/com/profile/FollowButton.tsx
parentad9da82612a33a796bcb2c679dbff357f4829dc8 (diff)
downloadvoidsky-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.tsx2
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'}
       />