diff options
Diffstat (limited to 'src/components/profile/ProfileBody.tsx')
-rw-r--r-- | src/components/profile/ProfileBody.tsx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/components/profile/ProfileBody.tsx b/src/components/profile/ProfileBody.tsx index 4076e473..64aec09c 100644 --- a/src/components/profile/ProfileBody.tsx +++ b/src/components/profile/ProfileBody.tsx @@ -57,15 +57,9 @@ const ProfileBody: React.FC<ProfileBodyProps> = ({ const dispatch = useDispatch(); const handleAcceptRequest = async () => { - try { - await dispatch( - acceptFriendRequest({id, username, first_name, last_name}), - ); - await dispatch(updateUserXFriends(id, state)); - dispatch(updateUserXProfileAllScreens(id, state)); - } catch (err) { - console.log(err); - } + await dispatch(acceptFriendRequest({id, username, first_name, last_name})); + await dispatch(updateUserXFriends(id, state)); + dispatch(updateUserXProfileAllScreens(id, state)); }; const handleDeclineFriendRequest = async () => { @@ -144,6 +138,12 @@ const ProfileBody: React.FC<ProfileBodyProps> = ({ }; const styles = StyleSheet.create({ + toggleButtonContainer: { + flexDirection: 'row', + flex: 1, + paddingTop: '3.5%', + paddingBottom: '2%', + }, acceptRejectContainer: { flexDirection: 'row', }, |