diff options
author | Eric Bailey <git@esb.lol> | 2024-10-21 09:44:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-21 09:44:58 -0500 |
commit | 1e723f177ff7174c7eb922daf3274711696f5a7b (patch) | |
tree | 42b5fed7c1cd6bfbb2e19884aad191236155e39c | |
parent | 72270fd5053f1132a7966197cd9dce17b5672d57 (diff) | |
download | voidsky-1e723f177ff7174c7eb922daf3274711696f5a7b.tar.zst |
Add back borders to feed liked-by screen (#5811)
-rw-r--r-- | src/view/screens/ProfileFeedLikedBy.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/view/screens/ProfileFeedLikedBy.tsx b/src/view/screens/ProfileFeedLikedBy.tsx index b796480f3..e19b42240 100644 --- a/src/view/screens/ProfileFeedLikedBy.tsx +++ b/src/view/screens/ProfileFeedLikedBy.tsx @@ -8,6 +8,7 @@ import {makeRecordUri} from '#/lib/strings/url-helpers' import {useSetMinimalShellMode} from '#/state/shell' import {PostLikedBy as PostLikedByComponent} from '#/view/com/post-thread/PostLikedBy' import {ViewHeader} from '#/view/com/util/ViewHeader' +import {CenteredView} from '#/view/com/util/Views' import * as Layout from '#/components/Layout' type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileFeedLikedBy'> @@ -25,8 +26,10 @@ export const ProfileFeedLikedByScreen = ({route}: Props) => { return ( <Layout.Screen testID="postLikedByScreen"> - <ViewHeader title={_(msg`Liked By`)} /> - <PostLikedByComponent uri={uri} /> + <CenteredView sideBorders={true}> + <ViewHeader title={_(msg`Liked By`)} /> + <PostLikedByComponent uri={uri} /> + </CenteredView> </Layout.Screen> ) } |