user?.pubkey
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Martti Malmi 2023-11-24 16:37:12 +02:00
parent 13b76e7709
commit e0b85b90f9

View File

@ -153,7 +153,7 @@ export default function ProfilePage({ id: propId, state }: ProfilePageProps) {
}
function username() {
const followedByFriends = user.pubkey ? socialGraphInstance.followedByFriends(user.pubkey) : new Set<string>();
const followedByFriends = user?.pubkey ? socialGraphInstance.followedByFriends(user.pubkey) : new Set<string>();
const MAX_FOLLOWED_BY_FRIENDS = 3;
return (
<>