diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js index 9af7db326..e05928e01 100644 --- a/app/javascript/mastodon/components/status.js +++ b/app/javascript/mastodon/components/status.js @@ -597,7 +597,7 @@ class Status extends ImmutablePureComponent { return null; }; - const statusAvatar = (status, account, otherAccounts, quote = false) => { + const statusAvatar = (status, account, quote = false) => { if (account === undefined || account === null) { return ; } else { @@ -605,13 +605,13 @@ class Status extends ImmutablePureComponent { } }; - const identity = (status, account, otherAccounts, quote = false) => ( + const identity = (status, account, quote = false) => (
- {statusAvatar(status, account, otherAccounts, quote)} + {statusAvatar(status, account, quote)}
- +
); @@ -636,7 +636,7 @@ class Status extends ImmutablePureComponent { {status.get('edited_at') && *} - {identity(status, account, otherAccounts, false)} + {identity(status, account, false)}