diff --git a/app/soapbox/features/status/index.tsx b/app/soapbox/features/status/index.tsx index 931ec7182..c0a7b92c5 100644 --- a/app/soapbox/features/status/index.tsx +++ b/app/soapbox/features/status/index.tsx @@ -135,7 +135,6 @@ const Thread: React.FC = (props) => { const me = useAppSelector(state => state.me); const status = useAppSelector(state => getStatus(state, { id: props.params.statusId })); const displayMedia = settings.get('displayMedia') as DisplayMedia; - const isUnderReview = status?.visibility === 'self'; const { ancestorsIds, descendantsIds } = useAppSelector(state => { let ancestorsIds = ImmutableOrderedSet(); @@ -461,22 +460,11 @@ const Thread: React.FC = (props) => {
- {isUnderReview ? ( - - ) : null}