diff options
author | Ansh <anshnanda10@gmail.com> | 2023-04-11 12:13:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 12:13:38 -0700 |
commit | 76132ca4dc939ac3722d8e047f86ae39b96ef36d (patch) | |
tree | 4289ada46d3011a166bb51cee3bb7073e43dd920 | |
parent | a683c9e15f959c4e55d38820ca5b991300ddb451 (diff) | |
download | voidsky-76132ca4dc939ac3722d8e047f86ae39b96ef36d.tar.zst |
make unfollow button light colored button (#429)
-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 7e25fd88a..7715358cf 100644 --- a/src/view/com/profile/FollowButton.tsx +++ b/src/view/com/profile/FollowButton.tsx @@ -9,7 +9,7 @@ import {FollowState} from 'state/models/cache/my-follows' export const FollowButton = observer( ({ unfollowedType = 'inverted', - followedType = 'inverted', + followedType = 'default', did, onToggleFollow, }: { |