From 5f83ba9324e682c6875daf9bcdc04a28ea046727 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Wed, 9 Nov 2022 13:43:15 -0500 Subject: [PATCH] 'inReview' -> 'isUnderReview' --- app/soapbox/components/status.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/soapbox/components/status.tsx b/app/soapbox/components/status.tsx index 961ca5fbe..2e05c7a84 100644 --- a/app/soapbox/components/status.tsx +++ b/app/soapbox/components/status.tsx @@ -296,7 +296,7 @@ const Status: React.FC = (props) => { const accountAction = props.accountAction || reblogElement; - const inReview = actualStatus.visibility === 'self'; + const isUnderReview = actualStatus.visibility === 'self'; const isSensitive = actualStatus.hidden; return ( @@ -354,11 +354,11 @@ const Status: React.FC = (props) => { - {(inReview || isSensitive) && ( + {(isUnderReview || isSensitive) && (