diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-02 18:34:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 18:34:18 -0500 |
commit | 00adcf1eddd51d954992dfd5a494ee5310d42d5b (patch) | |
tree | e8ab4086b4f7e7027b496c6119d84086fa3ce07b /src | |
parent | 269f693ae3bc3e6f72128b0a3d1d268edd9f9140 (diff) | |
parent | a410d67d5d2e13819e043b2e2356a0c701c3e0dd (diff) |
Merge pull request #215 from shravyaramesh/friends-button-styling-returns
[Quickfix] Styling: unfriend button - white with blue border
Diffstat (limited to 'src')
-rw-r--r-- | src/components/profile/ProfileBody.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/profile/ProfileBody.tsx b/src/components/profile/ProfileBody.tsx index 88161525..f2d75519 100644 --- a/src/components/profile/ProfileBody.tsx +++ b/src/components/profile/ProfileBody.tsx @@ -105,8 +105,8 @@ const ProfileBody: React.FC<ProfileBodyProps> = ({ {friendship_status === 'friends' && ( <Button title={'Unfriend'} - buttonStyle={styles.button} - titleStyle={styles.buttonTitle} + buttonStyle={styles.requestedButton} + titleStyle={styles.requestedButtonTitle} onPress={handleFriendUnfriend} // unfriend, no record status /> )} |