diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index e0373b7149..f6e998838a 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -120,6 +120,7 @@ function LoadMore({ }) .filter(Boolean) as LoadMoreItems[] }, [item.items, moderationOpts]) + const type = items[0].type return ( @@ -158,7 +159,7 @@ function LoadMore({ left: 0, backgroundColor: t.palette.primary_500, borderColor: t.atoms.bg.backgroundColor, - borderRadius: items[0].type === 'profile' ? 999 : 4, + borderRadius: type === 'profile' ? 999 : 4, zIndex: 4, }, ]}> @@ -209,7 +210,11 @@ function LoadMore({ a.leading_snug, hovered ? t.atoms.text : t.atoms.text_contrast_medium, ]}> - Load more suggestions + {type === 'profile' ? ( + Load more suggested follows + ) : ( + Load more suggested feeds + )}