dotnet-foundation / foundation

This repo is no longer being used. The information that is here has been migrated to https://github.com/dotnet-foundation/website.

Home Page:https://www.dotnetfoundation.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix mailto link on Team page

opened this issue · comments

When visiting https://dotnetfoundation.org/team, I noticed that the email icon under Miklos Barkoczi's name has mailto: referenced twice. It may be obvious to some, but not to others.

<a href="mailto:mailto:contact@dotnetfoundation.org">
    <i class="fa fa-envelope" aria-hidden="true"></i>
</a>

should be

<a href="mailto:contact@dotnetfoundation.org">
    <i class="fa fa-envelope" aria-hidden="true"></i>
</a>