aboutsummaryrefslogtreecommitdiff
path: root/src/components/search/SearchResults.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-03-09 08:37:57 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-03-09 08:37:57 -0800
commit13239b4b87f171a8d0c394af758968aa1e60f4ea (patch)
tree054f0d1f1cdaf5f2474bf8a7ade6e2bf8f3ba782 /src/components/search/SearchResults.tsx
parent74231a7496d9dc6435d01c78588d32eb1e558d7e (diff)
unused imports, source coreections
Diffstat (limited to 'src/components/search/SearchResults.tsx')
-rw-r--r--src/components/search/SearchResults.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/search/SearchResults.tsx b/src/components/search/SearchResults.tsx
index fbeae1d8..277b3454 100644
--- a/src/components/search/SearchResults.tsx
+++ b/src/components/search/SearchResults.tsx
@@ -5,10 +5,10 @@ import {
ScreenType,
CategoryPreviewType,
} from '../../types';
-import {StyleSheet, View} from 'react-native';
+import {View} from 'react-native';
import SearchResultsCell from './SearchResultCell';
import {useSelector} from 'react-redux';
-import {RootState} from 'src/store/rootReducer';
+import {RootState} from '../../store/rootReducer';
interface SearchResultsProps {
results: ProfilePreviewType[];
previewType: PreviewType;