chore: fix some eslint warnings

This commit is contained in:
2024-01-04 10:43:45 +00:00
parent 2a2c713486
commit 13f4ec3f30
14 changed files with 36 additions and 36 deletions

View File

@ -54,7 +54,7 @@ export default function MessagesPage() {
return (
<div className="flex items-center grow pfp-overlap">
{cx.participants.map(v => (
<ProfileImage pubkey={v.id} link="" showUsername={false} profile={v.profile} />
<ProfileImage key={v.id} pubkey={v.id} link="" showUsername={false} profile={v.profile} />
))}
{cx.title ?? <FormattedMessage defaultMessage="Group Chat" id="eXT2QQ" />}
</div>