diff options
author | dan <dan.abramov@gmail.com> | 2024-11-01 19:09:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-01 19:09:28 +0000 |
commit | 2398b84d1740cde9d8703801cd57e7044ae6aabb (patch) | |
tree | 1a3555954a80fda0936796286f17d7d29bc1040f /src | |
parent | fb4210b36ce52f0594f15ec2a524e85a27af4639 (diff) | |
download | voidsky-2398b84d1740cde9d8703801cd57e7044ae6aabb.tar.zst |
Change post Follow button color on toggle (#6059)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/post-thread/PostThreadFollowBtn.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadFollowBtn.tsx b/src/view/com/post-thread/PostThreadFollowBtn.tsx index 1808e91a3..9dc93916a 100644 --- a/src/view/com/post-thread/PostThreadFollowBtn.tsx +++ b/src/view/com/post-thread/PostThreadFollowBtn.tsx @@ -115,7 +115,7 @@ function PostThreadFollowBtnLoaded({ onPress={onPress} size="small" variant="solid" - color="secondary_inverted" + color={isFollowing ? 'secondary' : 'secondary_inverted'} style={[a.rounded_full]}> {gtMobile && ( <ButtonIcon |