about summary refs log tree commit diff
path: root/src/view/screens/ProfileFollows.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-04-22 19:08:41 -0500
committerGitHub <noreply@github.com>2023-04-22 19:08:41 -0500
commitc7600fe0c2d0b189cb1dcf9ab4d31671f01b81c9 (patch)
tree62beacd14a8013a507a0b0227e538fd3751658ad /src/view/screens/ProfileFollows.tsx
parent5085861b9ac0684d8eedb2a8d54453d3f23cde46 (diff)
downloadvoidsky-c7600fe0c2d0b189cb1dcf9ab4d31671f01b81c9.tar.zst
Web fixes (#517)
* Fix scroll behaviors on web

* Remove headers on web to avoid scroll overflow

* Fix follow button press in cards
Diffstat (limited to 'src/view/screens/ProfileFollows.tsx')
-rw-r--r--src/view/screens/ProfileFollows.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/ProfileFollows.tsx b/src/view/screens/ProfileFollows.tsx
index 9c15d1d92..f70944f55 100644
--- a/src/view/screens/ProfileFollows.tsx
+++ b/src/view/screens/ProfileFollows.tsx
@@ -20,7 +20,7 @@ export const ProfileFollowsScreen = withAuthRequired(({route}: Props) => {
 
   return (
     <View>
-      <ViewHeader title="Following" showOnDesktop />
+      <ViewHeader title="Following" />
       <ProfileFollowsComponent name={name} />
     </View>
   )