Club emails are hard-coded to mailto: links regardless whether they are links or emails, e.g. RITlug's mailing list gets converted to mailto:https://groups.google.com/forum/#!forum/ritlug-announce
See:
|
/** |
|
* EmailInfo wrapper. |
|
* Constructs email element. |
|
* |
|
* @param {String} email The club email |
|
*/ |
|
const EmailInfo = ({ email }) => ( |
|
<li className="club-info__item-wrapper"> |
|
<ClubInfoItem email={`mailto:${email}`}> |
|
<Email value={email} /> |
|
</ClubInfoItem> |
|
</li> |
|
); |
Club emails are hard-coded to
mailto:links regardless whether they are links or emails, e.g. RITlug's mailing list gets converted tomailto:https://groups.google.com/forum/#!forum/ritlug-announceSee:
ossn-frontend/src/components/components/club-info/club-info.js
Lines 120 to 132 in fa4cb2f