fix erronous reference to me in user profile
This commit is contained in:
parent
3106850ce9
commit
0d549abff9
@ -267,15 +267,15 @@ function HeaderHeader ({ user }) {
|
|||||||
<small className='text-muted d-flex align-items-center'>
|
<small className='text-muted d-flex align-items-center'>
|
||||||
<CodeIcon className='me-1' height={16} width={16} /> verified stacker.news contributor
|
<CodeIcon className='me-1' height={16} width={16} /> verified stacker.news contributor
|
||||||
</small>}
|
</small>}
|
||||||
{user.optional.nostrAuthPubkey !== null && !me.privates?.hideNostr &&
|
{user.optional.nostrAuthPubkey &&
|
||||||
<small className='text-muted d-flex-inline'>
|
<small className='text-muted d-flex-inline'>
|
||||||
<SocialLink name='Nostr' id={user.optional.nostrAuthPubkey} />
|
<SocialLink name='Nostr' id={user.optional.nostrAuthPubkey} />
|
||||||
</small>}
|
</small>}
|
||||||
{user.optional.githubId !== null && !me?.privates?.hideGithub &&
|
{user.optional.githubId &&
|
||||||
<small className='text-muted d-flex-inline'>
|
<small className='text-muted d-flex-inline'>
|
||||||
<SocialLink name='Github' id={user.optional.githubId} />
|
<SocialLink name='Github' id={user.optional.githubId} />
|
||||||
</small>}
|
</small>}
|
||||||
{user.optional.twitterId !== null && !me?.privates?.hideTwitter &&
|
{user.optional.twitterId !== null &&
|
||||||
<small className='text-muted d-flex-inline'>
|
<small className='text-muted d-flex-inline'>
|
||||||
<SocialLink name='Twitter' id={user.optional.twitterId} />
|
<SocialLink name='Twitter' id={user.optional.twitterId} />
|
||||||
</small>}
|
</small>}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user