diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-10 14:15:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-10 14:15:49 -0400 |
commit | 1c7690a3b398e12834aa2aaa0b7c34c9e9a65821 (patch) | |
tree | 8b3e91190b838c26845f6f86f98093da2170836f /src/screens/profile/PrivacyScreen.tsx | |
parent | 506785887480e302b4052edbec4a8160785c0239 (diff) | |
parent | fd417c78068e544b1611f2b5f2ae504431b14814 (diff) |
Merge pull request #361 from shravyaramesh/fix-import-paths
[quickfix] fixed import paths starting with src/
Diffstat (limited to 'src/screens/profile/PrivacyScreen.tsx')
-rw-r--r-- | src/screens/profile/PrivacyScreen.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/profile/PrivacyScreen.tsx b/src/screens/profile/PrivacyScreen.tsx index 17872e24..40e459b1 100644 --- a/src/screens/profile/PrivacyScreen.tsx +++ b/src/screens/profile/PrivacyScreen.tsx @@ -7,7 +7,7 @@ import { SafeAreaView, } from 'react-native'; import {useSelector} from 'react-redux'; -import {RootState} from 'src/store/rootReducer'; +import {RootState} from '../../store/rootReducer'; import {Background} from '../../components'; import {NO_PROFILE} from '../../store/initialStates'; import {BackgroundGradientType} from '../../types'; |