about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAnsh <anshnanda10@gmail.com>2023-07-20 11:48:23 -0700
committerGitHub <noreply@github.com>2023-07-20 11:48:23 -0700
commit7e1dac04390cc5b16988e9e2d1263e301f5ecfba (patch)
tree0bd38892712047cb8b06af15677e3dfda9781fe7 /src
parent30ac9259c7b9dc367fca15cb6e7895feb0955bd4 (diff)
downloadvoidsky-7e1dac04390cc5b16988e9e2d1263e301f5ecfba.tar.zst
fix mute list overflow bug (#1041)
Diffstat (limited to 'src')
-rw-r--r--src/view/screens/ProfileList.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx
index 98a8d0ac4..0502e8dc8 100644
--- a/src/view/screens/ProfileList.tsx
+++ b/src/view/screens/ProfileList.tsx
@@ -19,6 +19,7 @@ import {isDesktopWeb} from 'platform/detection'
 import {toShareUrl} from 'lib/strings/url-helpers'
 import {shareUrl} from 'lib/sharing'
 import {ListActions} from 'view/com/lists/ListActions'
+import {s} from 'lib/styles'
 
 type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileList'>
 export const ProfileListScreen = withAuthRequired(
@@ -132,6 +133,7 @@ export const ProfileListScreen = withAuthRequired(
           onPressEditList={onPressEditList}
           onPressDeleteList={onPressDeleteList}
           onPressShareList={onPressShareList}
+          style={[s.flex1]}
         />
       </CenteredView>
     )