From 010676aa851e97ad43225cda973c29203cf8f013 Mon Sep 17 00:00:00 2001 From: GleidsonDaniel Date: Tue, 21 Dec 2021 12:04:39 -0300 Subject: [PATCH] chore: move IUser to base types --- app/views/SelectedUsersView.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/app/views/SelectedUsersView.tsx b/app/views/SelectedUsersView.tsx index 3e2ddeb97..4634bfa7e 100644 --- a/app/views/SelectedUsersView.tsx +++ b/app/views/SelectedUsersView.tsx @@ -21,7 +21,7 @@ import UserItem from '../presentation/UserItem'; import { getUserSelector } from '../selectors/login'; import { ChatsStackParamList } from '../stacks/types'; import { withTheme } from '../theme'; -import { ApplicationState, BaseScreen } from '../types'; +import { ApplicationState, BaseScreen, IUser } from '../types'; import { showErrorAlert } from '../utils/info'; import log, { events, logEvent } from '../utils/log'; import sharedStyles from './Styles'; @@ -29,15 +29,6 @@ import sharedStyles from './Styles'; const ITEM_WIDTH = 250; const getItemLayout = (_: any, index: number) => ({ length: ITEM_WIDTH, offset: ITEM_WIDTH * index, index }); -interface IUser { - _id: string; - name: string; - fname: string; - search?: boolean; - // username is used when is from searching - username?: string; -} - type State = { users: IUser[]; loading: boolean;