diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-09 17:03:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 17:03:03 -0500 |
commit | d45f9fa30bca546989bcb7a97da2999a80c4e56a (patch) | |
tree | 373d6d1db1c11a53ee0205e689436dafce9048e2 /src/components/search/SearchResults.tsx | |
parent | 1033701a5f6a200a6bc09b99e77e912e3df2103f (diff) | |
parent | d66c0fa6d0b75918e4c67a61754c4e2f16bfaf3e (diff) |
Merge pull request #288 from shravyaramesh/tma689-badge-animation
[TMA-689] Badge animation
Diffstat (limited to 'src/components/search/SearchResults.tsx')
-rw-r--r-- | src/components/search/SearchResults.tsx | 4 |
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; |