diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-11 16:53:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 16:53:24 -0500 |
commit | 2561d20e17a697726d6b77accf79c9da2d1f6ef6 (patch) | |
tree | 9e2fdacee1040a9e9f975a329846dfa60cf5f3a4 /src/services | |
parent | 3bc52c4e021199c5b546d51cd238aad9a96852a7 (diff) | |
parent | 97e73f47622df32859964df4c94a4d419590bee2 (diff) |
Merge pull request #237 from shravyaramesh/tma255-taggs-bar
[TMA255] Suggested People: Taggs bar
Diffstat (limited to 'src/services')
-rw-r--r-- | src/services/UserFriendsService.ts | 2 | ||||
-rw-r--r-- | src/services/UserProfileService.ts | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/services/UserFriendsService.ts b/src/services/UserFriendsService.ts index 99d86d0b..eff18f16 100644 --- a/src/services/UserFriendsService.ts +++ b/src/services/UserFriendsService.ts @@ -1,7 +1,7 @@ //Abstracted common friends api calls out here import {Alert} from 'react-native'; -import {FriendshipStatusType} from 'src/types'; +import {FriendshipStatusType} from '../types'; import {FRIENDS_ENDPOINT} from '../constants'; import {ERROR_SOMETHING_WENT_WRONG_REFRESH} from '../constants/strings'; diff --git a/src/services/UserProfileService.ts b/src/services/UserProfileService.ts index b400843d..d0610714 100644 --- a/src/services/UserProfileService.ts +++ b/src/services/UserProfileService.ts @@ -1,9 +1,8 @@ -import {transformFromAstAsync} from '@babel/core'; import AsyncStorage from '@react-native-community/async-storage'; import moment from 'moment'; import {Alert} from 'react-native'; import RNFetchBlob from 'rn-fetch-blob'; -import {SocialAccountType} from 'src/types'; +import {SocialAccountType} from '../types'; import { PROFILE_PHOTO_ENDPOINT, HEADER_PHOTO_ENDPOINT, |