diff --git a/src/components/account-block.jsx b/src/components/account-block.jsx index 98252722..47c15774 100644 --- a/src/components/account-block.jsx +++ b/src/components/account-block.jsx @@ -62,6 +62,7 @@ function AccountBlock({ group, followersCount, createdAt, + locked, } = account; let [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct]; if (accountInstance) { @@ -123,6 +124,12 @@ function AccountBlock({ @{acct1} {acct2} + {locked && ( + <> + {' '} + + + )} {showActivity && ( <> diff --git a/src/components/report-modal.jsx b/src/components/report-modal.jsx index 6e74c24e..90b1b2d2 100644 --- a/src/components/report-modal.jsx +++ b/src/components/report-modal.jsx @@ -232,8 +232,8 @@ function ReportModal({ account, post, onClose }) { disabled={uiState === 'loading'} /> -
- {domain !== currentDomain && ( + {!!domain && domain !== currentDomain && ( +

- )} -
+
+ )}