Fix crash in “Private Mentions” column in glitch-soc (#3192)

Fixes #3190
This commit is contained in:
Claire
2025-09-19 19:06:48 +02:00
committed by GitHub
parent 67c332798e
commit 3b6624f97e

View File

@@ -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]);