fix mute list overflow bug (#1041)

zio/stable
Ansh 2023-07-20 11:48:23 -07:00 committed by GitHub
parent 30ac9259c7
commit 7e1dac0439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ import {isDesktopWeb} from 'platform/detection'
import {toShareUrl} from 'lib/strings/url-helpers' import {toShareUrl} from 'lib/strings/url-helpers'
import {shareUrl} from 'lib/sharing' import {shareUrl} from 'lib/sharing'
import {ListActions} from 'view/com/lists/ListActions' import {ListActions} from 'view/com/lists/ListActions'
import {s} from 'lib/styles'
type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileList'> type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileList'>
export const ProfileListScreen = withAuthRequired( export const ProfileListScreen = withAuthRequired(
@ -132,6 +133,7 @@ export const ProfileListScreen = withAuthRequired(
onPressEditList={onPressEditList} onPressEditList={onPressEditList}
onPressDeleteList={onPressDeleteList} onPressDeleteList={onPressDeleteList}
onPressShareList={onPressShareList} onPressShareList={onPressShareList}
style={[s.flex1]}
/> />
</CenteredView> </CenteredView>
) )