chore: formatting

This commit is contained in:
2024-01-26 13:29:59 +00:00
parent c8c0cc2ac5
commit 88766c6c08
2 changed files with 6 additions and 1 deletions

View File

@ -10,5 +10,7 @@ export function ChatParticipantProfile({ participant }: { participant: ChatParti
if (participant.id === publicKey) {
return <NoteToSelf className="grow" />;
}
return <ProfileImage pubkey={participant.id} className="grow" profile={participant.profile as CachedMetadata} link="" />;
return (
<ProfileImage pubkey={participant.id} className="grow" profile={participant.profile as CachedMetadata} link="" />
);
}