about summary refs log tree commit diff
path: root/src/screens/Search/SearchResults.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/Search/SearchResults.tsx')
-rw-r--r--src/screens/Search/SearchResults.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/screens/Search/SearchResults.tsx b/src/screens/Search/SearchResults.tsx
index bb51d2deb..6b7a582d5 100644
--- a/src/screens/Search/SearchResults.tsx
+++ b/src/screens/Search/SearchResults.tsx
@@ -275,9 +275,7 @@ let SearchScreenUserResults = ({
       {results.length ? (
         <List
           data={results}
-          renderItem={({item}) => (
-            <ProfileCardWithFollowBtn profile={item} noBg />
-          )}
+          renderItem={({item}) => <ProfileCardWithFollowBtn profile={item} />}
           keyExtractor={item => item.did}
           desktopFixedHeight
           contentContainerStyle={{paddingBottom: 100}}