aboutsummaryrefslogtreecommitdiff
path: root/src/screens/profile/PrivacyScreen.tsx
diff options
context:
space:
mode:
authorankit-thanekar007 <ankit.thanekar007@gmail.com>2021-03-29 13:07:51 -0700
committerankit-thanekar007 <ankit.thanekar007@gmail.com>2021-03-29 13:07:51 -0700
commitbc1f377dfe4033f2fad28b7852dc09a72e0bd43e (patch)
tree721015410c6ea4b0e1a443a0d489f8a578ae8a11 /src/screens/profile/PrivacyScreen.tsx
parent3802fbd5d7f7c9ca70060f53af993356d946483d (diff)
Logout remaining
Diffstat (limited to 'src/screens/profile/PrivacyScreen.tsx')
-rw-r--r--src/screens/profile/PrivacyScreen.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/profile/PrivacyScreen.tsx b/src/screens/profile/PrivacyScreen.tsx
index d91c7841..17872e24 100644
--- a/src/screens/profile/PrivacyScreen.tsx
+++ b/src/screens/profile/PrivacyScreen.tsx
@@ -1,4 +1,3 @@
-import {useNavigation} from '@react-navigation/core';
import React from 'react';
import {
SectionList,
@@ -12,7 +11,7 @@ import {RootState} from 'src/store/rootReducer';
import {Background} from '../../components';
import {NO_PROFILE} from '../../store/initialStates';
import {BackgroundGradientType} from '../../types';
-import {normalize} from '../../utils/layouts';
+import {SCREEN_HEIGHT} from '../../utils/layouts';
import SettingsCell from './SettingsCell';
import {SETTINGS_DATA} from '../../constants/constants';
@@ -44,7 +43,7 @@ const PrivacyScreen: React.FC = () => {
};
const styles = StyleSheet.create({
- container: {marginHorizontal: '8%', marginTop: '8%'},
+ container: {height: SCREEN_HEIGHT, marginHorizontal: '8%', marginTop: '8%'},
});
export default PrivacyScreen;