diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-04 20:46:42 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-05-04 20:48:09 -0400 |
commit | 25206461714659a3ca26fdbc799c6206e2f792be (patch) | |
tree | 2641557ac8f5f2a4ac91871472559f10e9c65d78 | |
parent | 7f9799c6693254f8eb6729c0977826694c28c437 (diff) |
fixed linter issue
-rw-r--r-- | src/utils/users.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/utils/users.ts b/src/utils/users.ts index c167ac2f..754382b3 100644 --- a/src/utils/users.ts +++ b/src/utils/users.ts @@ -1,6 +1,4 @@ import AsyncStorage from '@react-native-community/async-storage'; -import {NavigationProp} from '@react-navigation/core'; -import {Dispatch} from 'react'; import {INTEGRATED_SOCIAL_LIST} from '../constants'; import {isUserBlocked, loadSocialPosts} from '../services'; import { @@ -19,8 +17,8 @@ import {loadUserX} from './../store/actions/userX'; import {AppDispatch} from './../store/configureStore'; import {RootState} from './../store/rootReducer'; import { - ProfilePreviewType, ProfileInfoType, + ProfilePreviewType, ScreenType, UserType, } from './../types/types'; |