Fixed issue in Profile Section URL

This commit is contained in:
Aadhar Chandiwala
2022-03-21 06:14:22 +05:30
parent de53d8dfe7
commit d0bc9db6e5
6 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ export const MastheadSidebar: React.FC = () => {
</DataDisplay>
{profiles.map(({ id, username, network, url }) => (
<DataDisplay key={id} icon={getProfileIcon(network)} link={url} className="text-xs">
<DataDisplay key={id} icon={getProfileIcon(network)} link={url && addHttp(url)} className="text-xs">
{username}
</DataDisplay>
))}