feat(Profiles): hide network name when icon is present

This commit is contained in:
Dhaval Savalia
2024-02-18 13:29:33 -05:00
parent b92b4c9936
commit 2dce78200b
9 changed files with 9 additions and 9 deletions

View File

@ -263,7 +263,7 @@ const Profiles = () => {
) : (
<p>{item.username}</p>
)}
<p className="text-sm">{item.network}</p>
{!item.icon && <p className="text-sm">{item.network}</p>}
</div>
)}
</Section>