diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-05-08 03:09:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 11:09:22 -0700 |
commit | af77574b3c5943221d19c065da18a5fe7a49b9c0 (patch) | |
tree | 15ccee198ebbee900179824174e7001da428f8e3 | |
parent | b1a1ca98e8d8cd6b607d7fb7ce75eaaa3713c2df (diff) | |
download | voidsky-af77574b3c5943221d19c065da18a5fe7a49b9c0.tar.zst |
Update Feed.tsx (#3715)
-rw-r--r-- | src/screens/Profile/Sections/Feed.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/screens/Profile/Sections/Feed.tsx b/src/screens/Profile/Sections/Feed.tsx index bc106fcfb..cc52eef3b 100644 --- a/src/screens/Profile/Sections/Feed.tsx +++ b/src/screens/Profile/Sections/Feed.tsx @@ -95,7 +95,11 @@ function ProfileEndOfFeed() { const pal = usePalette('default') return ( - <View style={[pal.border, {paddingTop: 32, borderTopWidth: 1}]}> + <View + style={[ + pal.border, + {paddingTop: 32, paddingBottom: 32, borderTopWidth: 1}, + ]}> <Text style={[pal.textLight, pal.border, {textAlign: 'center'}]}> <Trans>End of feed</Trans> </Text> |