aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-02-02 18:34:18 -0500
committerGitHub <noreply@github.com>2021-02-02 18:34:18 -0500
commit00adcf1eddd51d954992dfd5a494ee5310d42d5b (patch)
treee8ab4086b4f7e7027b496c6119d84086fa3ce07b
parent269f693ae3bc3e6f72128b0a3d1d268edd9f9140 (diff)
parenta410d67d5d2e13819e043b2e2356a0c701c3e0dd (diff)
Merge pull request #215 from shravyaramesh/friends-button-styling-returns
[Quickfix] Styling: unfriend button - white with blue border
-rw-r--r--src/components/profile/ProfileBody.tsx4
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
/>
)}