mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-27 13:16:07 +00:00
Fix crash in “Private Mentions” column in glitch-soc (#3192)
Fixes #3190
This commit is contained in:
@@ -148,7 +148,7 @@ export const Conversation = ({ conversation, scrollKey }) => {
|
||||
|
||||
menu.push({ text: intl.formatMessage(messages.delete), action: handleDelete });
|
||||
|
||||
const names = accounts.map(a => (
|
||||
const names = accounts.map((account) => (
|
||||
<LinkedDisplayName displayProps={{account, variant: 'simple'}} key={account.get('id')} />
|
||||
)).reduce((prev, cur) => [prev, ', ', cur]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user