1
0
mirror of https://github.com/tooot-app/app synced 2025-01-28 09:19:25 +01:00
This commit is contained in:
xmflsct 2022-12-24 02:13:24 +01:00
parent e27bf7407b
commit 219358cf54

View File

@ -75,7 +75,7 @@ const TimelineHeaderNotification: React.FC<Props> = ({ notification }) => {
/> />
) )
default: default:
if (status) { if (status && Platform.OS !== 'android') {
return ( return (
<Pressable <Pressable
style={{ flex: 1, alignItems: 'center' }} style={{ flex: 1, alignItems: 'center' }}
@ -159,7 +159,6 @@ const TimelineHeaderNotification: React.FC<Props> = ({ notification }) => {
</View> </View>
</View> </View>
{Platform.OS !== 'android' ? (
<View <View
style={[ style={[
{ marginLeft: StyleConstants.Spacing.M }, { marginLeft: StyleConstants.Spacing.M },
@ -171,7 +170,6 @@ const TimelineHeaderNotification: React.FC<Props> = ({ notification }) => {
]} ]}
children={actions()} children={actions()}
/> />
) : null}
</View> </View>
) )
} }