diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/search/ExploreSection.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/search/ExploreSection.tsx b/src/components/search/ExploreSection.tsx index 025c8c3c..53073a9e 100644 --- a/src/components/search/ExploreSection.tsx +++ b/src/components/search/ExploreSection.tsx @@ -14,7 +14,7 @@ interface ExploreSectionProps { users: ProfilePreviewType[]; } const ExploreSection: React.FC<ExploreSectionProps> = ({title, users}) => { - return users.length !== 0 ? ( + return users?.length !== 0 ? ( <View style={styles.container}> <Text style={styles.header}>{title}</Text> <FlatList |
