Skip to content

Commit bb95995

Browse files
authored
fix(community-map): replace href to github property (#397)
1 parent c687c6a commit bb95995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CommunityMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const CommunityMap = (props: any) => {
5858
img.src = `community/${person.github}.png`;
5959

6060
const anchor = document.createElement("a");
61-
anchor.href = `https://github.com/${person.href}`;
61+
anchor.href = `https://github.com/${person.github}`;
6262
anchor.title = person.github;
6363

6464
anchor.append(img);

0 commit comments

Comments
 (0)