Skip to content

Commit cfcc4ca

Browse files
authored
Link to members github (#102)
1 parent 09f2161 commit cfcc4ca

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/components/members-list/members-list-item/members-list-item.component.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,13 @@ const MembersListItem = ({ member }: Props) => {
6868
className={styles["github-icon"]}
6969
icon={faGithub as IconProp}
7070
/>
71-
<a>{member.github}</a>
71+
<a
72+
href={`https://github.com/${member.github}`}
73+
target="_blank"
74+
rel="noopener noreferrer"
75+
>
76+
{member.github}
77+
</a>
7278
</div>
7379
<div className={`${styles["entry"]} ${styles["contributions"]}`}>
7480
<div>

0 commit comments

Comments
 (0)