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/moments/MomentPostHeader.tsx | |
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/moments/MomentPostHeader.tsx')
-rw-r--r-- | src/components/moments/MomentPostHeader.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/moments/MomentPostHeader.tsx b/src/components/moments/MomentPostHeader.tsx index 810ccea9..aad776e8 100644 --- a/src/components/moments/MomentPostHeader.tsx +++ b/src/components/moments/MomentPostHeader.tsx @@ -1,6 +1,6 @@ import React, {useState} from 'react'; import {StyleSheet, Text, View, ViewProps} from 'react-native'; -import {MomentMoreInfoDrawer} from '..'; +import {MomentMoreInfoDrawer} from '../profile'; import {loadUserMoments} from '../../store/actions'; import {useDispatch, useSelector} from 'react-redux'; import {ScreenType} from '../../types'; |