diff options
Diffstat (limited to 'src/screens')
| -rw-r--r-- | src/screens/search/DiscoverUsers.tsx | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/src/screens/search/DiscoverUsers.tsx b/src/screens/search/DiscoverUsers.tsx index 921c8b79..09c00057 100644 --- a/src/screens/search/DiscoverUsers.tsx +++ b/src/screens/search/DiscoverUsers.tsx @@ -1,22 +1,17 @@  import React, {useEffect, useState} from 'react'; -import {FlatList, StatusBar, StyleSheet, View} from 'react-native'; +import {FlatList, StatusBar, StyleSheet} from 'react-native';  import {Text} from 'react-native-animatable';  import {SafeAreaView} from 'react-native-safe-area-context';  import {HeaderHeight, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils';  import {SearchBackground} from '../../components';  import {RouteProp} from '@react-navigation/native';  import {MainStackParams} from '../../routes'; -import {StackNavigationProp} from '@react-navigation/stack';  import {normalize} from '../../utils';  import {ProfilePreviewType} from '../../types';  import ExploreSectionUser from '../../components/search/ExploreSectionUser';  import {getDiscoverUsers} from '../../services/ExploreService';  type DiscoverUsersRouteProps = RouteProp<MainStackParams, 'DiscoverUsers'>; -type DiscoverUsersNavigationProps = StackNavigationProp< -  MainStackParams, -  'DiscoverUsers' ->;  interface DiscoverUsersProps {    route: DiscoverUsersRouteProps;  | 
