pl-fe: do not display default follow action when unauthenticated

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-09-15 19:15:55 +02:00
parent 9e8d67c3af
commit 6c4e6b9bdc

View File

@ -160,7 +160,7 @@ const Account = ({
if (!withRelationship) return null; if (!withRelationship) return null;
if (account.id !== me) { if (me && account.id !== me) {
return <ActionButton account={account} actionType={actionType} />; return <ActionButton account={account} actionType={actionType} />;
} }