link to profile from chat
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Martti Malmi 2024-02-01 10:33:48 +02:00
parent cd5cc07857
commit 6bc5387afc
1 changed files with 1 additions and 3 deletions

View File

@ -10,7 +10,5 @@ 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} />;
}