This commit is contained in:
Kieran 2023-06-21 16:47:16 +01:00
parent a251c59f21
commit 5c3d0ed5a9
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 2 additions and 1 deletions

View File

@ -79,6 +79,7 @@ export function LiveChat({ link, options }: { link: NostrLink, options?: LiveCha
return <ChatZap ev={a} key={a.id} />
}
}
return null;
})}
{messages.data === undefined && <Spinner />}
</div>

View File

@ -18,7 +18,7 @@ export function Profile({ pubkey, options }: { pubkey: string, options?: Profile
const profile = useUserProfile(System, pubkey);
return <div className="profile">
<img src={profile?.picture} />
<img src={profile?.picture} alt="Profile"/>
{(options?.showName ?? true) && getName(pubkey, profile)}
</div>
}