diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-03-02 19:16:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-02 19:16:48 -0500 |
commit | d73e99036e5b78a9b7dbcc43e9a87aa6f9c1faeb (patch) | |
tree | f505e400a7a0cd5bed9a95c86f90b2b6ddf80782 /src/components/common | |
parent | 791a3a7008cbd861ab1cf1b643d95d3555b3676b (diff) | |
parent | 09a9ddcbe1e32b17bd8d7c7519bb41b41e13f837 (diff) |
Merge pull request #274 from leonyjiang/hotfix-bad-import-syntax
[Hotfix] Fix Imports Crashing App in Development
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/GenericMoreInfoDrawer.tsx | 2 | ||||
-rw-r--r-- | src/components/common/SocialLinkModal.tsx | 2 | ||||
-rw-r--r-- | src/components/common/TaggPopup.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/components/common/GenericMoreInfoDrawer.tsx b/src/components/common/GenericMoreInfoDrawer.tsx index ff32a464..0928ed44 100644 --- a/src/components/common/GenericMoreInfoDrawer.tsx +++ b/src/components/common/GenericMoreInfoDrawer.tsx @@ -9,7 +9,7 @@ import { ViewStyle, } from 'react-native'; import {useSafeAreaInsets} from 'react-native-safe-area-context'; -import {BottomDrawer} from '.'; +import BottomDrawer from './BottomDrawer'; import {TAGG_LIGHT_BLUE} from '../../constants'; import {normalize, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; diff --git a/src/components/common/SocialLinkModal.tsx b/src/components/common/SocialLinkModal.tsx index 20061cd0..a8c18225 100644 --- a/src/components/common/SocialLinkModal.tsx +++ b/src/components/common/SocialLinkModal.tsx @@ -2,7 +2,7 @@ import React from 'react'; import {Modal, StyleSheet, Text, TouchableOpacity, View} from 'react-native'; import {TextInput} from 'react-native-gesture-handler'; import {ScreenType} from '../../types'; -import {SocialIcon} from '.'; +import SocialIcon from './SocialIcon'; import CloseIcon from '../../assets/ionicons/close-outline.svg'; import {normalize, SCREEN_WIDTH} from '../../utils'; import CenteredView from './CenteredView'; diff --git a/src/components/common/TaggPopup.tsx b/src/components/common/TaggPopup.tsx index b5ac32ec..8b6865fd 100644 --- a/src/components/common/TaggPopup.tsx +++ b/src/components/common/TaggPopup.tsx @@ -3,7 +3,7 @@ import {StackNavigationProp} from '@react-navigation/stack'; import * as React from 'react'; import {Platform, Text, StyleSheet, TouchableOpacity} from 'react-native'; import {Image, View} from 'react-native-animatable'; -import {ArrowButton} from '..'; +import {ArrowButton} from '../onboarding'; import {OnboardingStackParams} from '../../routes'; import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; import CloseIcon from '../../assets/ionicons/close-outline.svg'; |