1
0
mirror of https://github.com/tooot-app/app synced 2024-12-28 02:10:02 +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:
if (status) {
if (status && Platform.OS !== 'android') {
return (
<Pressable
style={{ flex: 1, alignItems: 'center' }}
@ -159,7 +159,6 @@ const TimelineHeaderNotification: React.FC<Props> = ({ notification }) => {
</View>
</View>
{Platform.OS !== 'android' ? (
<View
style={[
{ marginLeft: StyleConstants.Spacing.M },
@ -171,7 +170,6 @@ const TimelineHeaderNotification: React.FC<Props> = ({ notification }) => {
]}
children={actions()}
/>
) : null}
</View>
)
}