Fix crash in “Private Mentions” column in glitch-soc (#3192)
Fixes #3190
This commit is contained in:
parent
67c332798e
commit
3b6624f97e
@ -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]);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user