Removed url && in the link prop

This commit is contained in:
Aadhar Chandiwala
2022-03-14 19:32:12 +05:30
parent c28afbc75d
commit de53d8dfe7
6 changed files with 6 additions and 6 deletions

View File

@ -84,7 +84,7 @@ const Section: React.FC<SectionProps> = ({
{url && (
<div className="inline-flex justify-center">
<a href={url && addHttp(url)} target="_blank" rel="noreferrer">
<a href={addHttp(url)} target="_blank" rel="noreferrer">
{url}
</a>
</div>