We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f2161 commit cfcc4caCopy full SHA for cfcc4ca
src/components/members-list/members-list-item/members-list-item.component.tsx
@@ -68,7 +68,13 @@ const MembersListItem = ({ member }: Props) => {
68
className={styles["github-icon"]}
69
icon={faGithub as IconProp}
70
/>
71
- <a>{member.github}</a>
+ <a
72
+ href={`https://github.com/${member.github}`}
73
+ target="_blank"
74
+ rel="noopener noreferrer"
75
+ >
76
+ {member.github}
77
+ </a>
78
</div>
79
<div className={`${styles["entry"]} ${styles["contributions"]}`}>
80
<div>
0 commit comments