diff --git a/src/components/account-block.jsx b/src/components/account-block.jsx index 4cce3422..98252722 100644 --- a/src/components/account-block.jsx +++ b/src/components/account-block.jsx @@ -61,6 +61,7 @@ function AccountBlock({ note, group, followersCount, + createdAt, } = account; let [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct]; if (accountInstance) { @@ -188,6 +189,21 @@ function AccountBlock({ /> )} + {!bot && + !group && + !hasRelationship && + !followersCount && + !verifiedField && + !!createdAt && ( + + Joined{' '} + + + )} )}