From cc0c07851e90f2f45dd91872f929004cfc2008cf Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Fri, 6 Jan 2023 12:05:13 -0500 Subject: [PATCH] Refactor to remove unneeded const --- app/soapbox/components/status.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/soapbox/components/status.tsx b/app/soapbox/components/status.tsx index 2386dd214..5513f769f 100644 --- a/app/soapbox/components/status.tsx +++ b/app/soapbox/components/status.tsx @@ -59,6 +59,7 @@ export interface IStatus { const Status: React.FC = (props) => { const { status, + accountAction, avatarSize = 42, focusable = true, hoverable = true, @@ -310,8 +311,6 @@ const Status: React.FC = (props) => { react: handleHotkeyReact, }; - const accountAction = props.accountAction; - const isUnderReview = actualStatus.visibility === 'self'; const isSensitive = actualStatus.hidden;