Fix verified flag
This commit is contained in:
parent
25f865272f
commit
893474e788
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ const ProfilePreview: React.FC<IProfilePreview> = ({ account }) => {
|
||||||
<StillImage alt='' className='h-12 w-12 rounded-full' src={account.avatar} />
|
<StillImage alt='' className='h-12 w-12 rounded-full' src={account.avatar} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{!account.verified && <div className='absolute -top-1.5 -right-1.5'><VerificationBadge /></div>}
|
{account.verified && <div className='absolute -top-1.5 -right-1.5'><VerificationBadge /></div>}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Stack className='truncate'>
|
<Stack className='truncate'>
|
||||||
|
|
Loading…
Reference in a new issue