aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-20 12:01:00 -0500
committerIvan Chen <ivan@tagg.id>2021-02-20 12:01:00 -0500
commita59eee6d4b95ef16e18321bb48072af16f4018dd (patch)
tree4fc67ad8eb9c6ef274e3aa8cb8d1e6f6f0d50856
parentf099df4589515da84a62c16d284bdee058ea5454 (diff)
fixed normalize import
-rw-r--r--src/components/common/GenericMoreInfoDrawer.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/common/GenericMoreInfoDrawer.tsx b/src/components/common/GenericMoreInfoDrawer.tsx
index b91c38c8..ff32a464 100644
--- a/src/components/common/GenericMoreInfoDrawer.tsx
+++ b/src/components/common/GenericMoreInfoDrawer.tsx
@@ -8,11 +8,10 @@ import {
ViewProps,
ViewStyle,
} from 'react-native';
-import { normalize } from 'react-native-elements';
import {useSafeAreaInsets} from 'react-native-safe-area-context';
import {BottomDrawer} from '.';
import {TAGG_LIGHT_BLUE} from '../../constants';
-import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils';
+import {normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils';
// conforms the JSX onPress attribute type
type OnPressHandler = (event: GestureResponderEvent) => void;