Fix icons on blurred posts (#3068)
parent
cf8b03801f
commit
f8aa5fd005
|
@ -46,7 +46,7 @@ export function ContentHider({
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const isMute = moderation.cause?.type === 'muted'
|
const isMute = ['muted', 'muted-word'].includes(moderation.cause?.type || '')
|
||||||
const desc = describeModerationCause(moderation.cause, 'content')
|
const desc = describeModerationCause(moderation.cause, 'content')
|
||||||
return (
|
return (
|
||||||
<View testID={testID} style={[styles.outer, style]}>
|
<View testID={testID} style={[styles.outer, style]}>
|
||||||
|
|
|
@ -47,7 +47,7 @@ export function PostHider({
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const isMute = moderation.cause?.type === 'muted'
|
const isMute = ['muted', 'muted-word'].includes(moderation.cause?.type || '')
|
||||||
const desc = describeModerationCause(moderation.cause, 'content')
|
const desc = describeModerationCause(moderation.cause, 'content')
|
||||||
return !override ? (
|
return !override ? (
|
||||||
<Pressable
|
<Pressable
|
||||||
|
|
Loading…
Reference in New Issue