Skip to content

Commit 479e36b

Browse files
authored
Merge pull request #9 from ericknilson/feature/ALTER-GITHUB-USERNAME
altered github username account
2 parents 7cc1015 + 9317d43 commit 479e36b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Inspect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ export default function Inspect() {
126126
<h1 className='text-white font-bold'>Github</h1>
127127
</div>
128128
{!!repo?.owner?.login && (
129-
<h1 className="text-sm font-bold mb-4">Created by: {repo?.owner?.login}</h1>
129+
<h1 className="text-sm font-bold mb-4">Created by: <a href={repo?.owner?.html_url} target='_blank'>{repo?.owner?.login}</a></h1>
130130
)}
131131
{!!contributors && !!contributors.length && (
132132
<>
133133
<h2 className="text-sm font-semibold mb-2">Contributors:</h2>
134134
<ul className="list-disc ml-6">
135135
{contributors.map((contributor: any) => (
136136
<li key={contributor.id} className="mb-1 text-sm">
137-
{contributor.login}
137+
<a href={contributor.html_url} target='_blank'>{contributor.login}</a>
138138
</li>
139139
))}
140140
</ul>

0 commit comments

Comments
 (0)