Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix feed empty state (close #1235) (#1239)

authored by

Paul Frazee and committed by
GitHub
54118fe4 2b13dc0f

+6 -2
+6 -2
src/view/screens/CustomFeed.tsx
··· 477 477 ]) 478 478 479 479 const renderEmptyState = React.useCallback(() => { 480 - return <EmptyState icon="feed" message="This list is empty!" /> 481 - }, []) 480 + return ( 481 + <View style={[pal.border, {borderTopWidth: 1, paddingTop: 20}]}> 482 + <EmptyState icon="feed" message="This feed is empty!" /> 483 + </View> 484 + ) 485 + }, [pal.border]) 482 486 483 487 return ( 484 488 <View style={s.hContentRegion}>