From 7e1dac04390cc5b16988e9e2d1263e301f5ecfba Mon Sep 17 00:00:00 2001 From: Ansh Date: Thu, 20 Jul 2023 11:48:23 -0700 Subject: [PATCH] fix mute list overflow bug (#1041) --- src/view/screens/ProfileList.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/view/screens/ProfileList.tsx b/src/view/screens/ProfileList.tsx index 98a8d0ac..0502e8dc 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 export const ProfileListScreen = withAuthRequired( @@ -132,6 +133,7 @@ export const ProfileListScreen = withAuthRequired( onPressEditList={onPressEditList} onPressDeleteList={onPressDeleteList} onPressShareList={onPressShareList} + style={[s.flex1]} /> )