mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

Add back borders to feed liked-by screen (#5811)

authored by

Eric Bailey and committed by
GitHub
1e723f17 72270fd5

+5 -2
+5 -2
src/view/screens/ProfileFeedLikedBy.tsx
··· 8 8 import {useSetMinimalShellMode} from '#/state/shell' 9 9 import {PostLikedBy as PostLikedByComponent} from '#/view/com/post-thread/PostLikedBy' 10 10 import {ViewHeader} from '#/view/com/util/ViewHeader' 11 + import {CenteredView} from '#/view/com/util/Views' 11 12 import * as Layout from '#/components/Layout' 12 13 13 14 type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileFeedLikedBy'> ··· 25 26 26 27 return ( 27 28 <Layout.Screen testID="postLikedByScreen"> 28 - <ViewHeader title={_(msg`Liked By`)} /> 29 - <PostLikedByComponent uri={uri} /> 29 + <CenteredView sideBorders={true}> 30 + <ViewHeader title={_(msg`Liked By`)} /> 31 + <PostLikedByComponent uri={uri} /> 32 + </CenteredView> 30 33 </Layout.Screen> 31 34 ) 32 35 }