Web fixes (#517)

* Fix scroll behaviors on web

* Remove headers on web to avoid scroll overflow

* Fix follow button press in cards
This commit is contained in:
Paul Frazee
2023-04-22 19:08:41 -05:00
committed by GitHub
parent 5085861b9a
commit c7600fe0c2
9 changed files with 29 additions and 8 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export const PostLikedByScreen = withAuthRequired(({route}: Props) => {
return (
<View>
<ViewHeader title="Liked by" showOnDesktop />
<ViewHeader title="Liked by" />
<PostLikedByComponent uri={uri} />
</View>
)
+1 -1
View File
@@ -22,7 +22,7 @@ export const PostRepostedByScreen = withAuthRequired(({route}: Props) => {
return (
<View>
<ViewHeader title="Reposted by" showOnDesktop />
<ViewHeader title="Reposted by" />
<PostRepostedByComponent uri={uri} />
</View>
)
+1 -1
View File
@@ -20,7 +20,7 @@ export const ProfileFollowersScreen = withAuthRequired(({route}: Props) => {
return (
<View>
<ViewHeader title="Followers" showOnDesktop />
<ViewHeader title="Followers" />
<ProfileFollowersComponent name={name} />
</View>
)
+1 -1
View File
@@ -20,7 +20,7 @@ export const ProfileFollowsScreen = withAuthRequired(({route}: Props) => {
return (
<View>
<ViewHeader title="Following" showOnDesktop />
<ViewHeader title="Following" />
<ProfileFollowsComponent name={name} />
</View>
)