diff options
| author | eug-vs <eug-vs@keemail.me> | 2020-03-21 17:51:01 +0300 | 
|---|---|---|
| committer | eug-vs <eug-vs@keemail.me> | 2020-03-21 17:51:56 +0300 | 
| commit | 5de3d6bc92a3dce752dad2ce2acc17071383b6fa (patch) | |
| tree | 75aca58fa856364abce367fa9c928b40adfb9dd6 /src/pages/Contribute | |
| parent | 295c6e179ec0f14a10303e01fb6e5b5ef969db79 (diff) | |
| download | chrono-cube-ui-5de3d6bc92a3dce752dad2ce2acc17071383b6fa.tar.gz | |
fix: bind link to developer name
Diffstat (limited to 'src/pages/Contribute')
| -rw-r--r-- | src/pages/Contribute/Contribute.tsx | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/Contribute/Contribute.tsx b/src/pages/Contribute/Contribute.tsx index 77228a1..67f2b8a 100644 --- a/src/pages/Contribute/Contribute.tsx +++ b/src/pages/Contribute/Contribute.tsx @@ -15,7 +15,7 @@ import BugReportIcon from '@material-ui/icons/BugReport';  import NewReleasesIcon from '@material-ui/icons/NewReleases';  import { Window, ContentSection } from 'react-benzin'; -import GithubAvatar from '../../components/GithubAvatar/GithubAvatar'; +import GithubAvatar, { getUserGithubUrl } from '../../components/GithubAvatar/GithubAvatar';  import developers from '../../developers.json'; @@ -116,7 +116,7 @@ const Contribute: React.FC = () => {                    <ListItem>                      <GithubAvatar username={developer.username} />                      <div> -                      <Link href="#">{developer.username}</Link> +                      <Link href={getUserGithubUrl(developer.username)}>{developer.username}</Link>                        <Typography component="div" color="textSecondary">                          {developer.role}                        </Typography>  |