diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/suggestedPeople/MutualFriends.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/suggestedPeople/MutualFriends.tsx b/src/components/suggestedPeople/MutualFriends.tsx index d8b37bca..3f9df4cd 100644 --- a/src/components/suggestedPeople/MutualFriends.tsx +++ b/src/components/suggestedPeople/MutualFriends.tsx @@ -52,7 +52,7 @@ const MutualFriends: React.FC = () => { </TouchableOpacity> )} <BottomDrawer - initialSnapPosition={isIPhoneX() ? '40%' : '45%'} + initialSnapPosition={isIPhoneX() ? '40%' : '46%'} showHeader={false} isOpen={drawerVisible} setIsOpen={setDrawerVisible}> @@ -138,7 +138,7 @@ const styles = StyleSheet.create({ flexDirection: 'column', backgroundColor: '#f9f9f9', width: SCREEN_WIDTH, - height: SCREEN_HEIGHT * 0.4, + height: isIPhoneX() ? SCREEN_HEIGHT * 0.4 : SCREEN_HEIGHT * 0.46, borderTopRightRadius: normalize(13), borderTopLeftRadius: normalize(13), borderWidth: 0.5, |