diff options
-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> ) } |