Skip to content

Commit f6cfd24

Browse files
authored
Update OrganizationsOnGithub.tsx
1 parent de1575c commit f6cfd24

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: src/components/OrganizationsOnGithub.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,15 @@ export const OrganizationsOnGithub = () => {
5353
<thead className="text-m uppercase">
5454
<tr>
5555
<th scope="col" className="px-6 py-3">Name</th>
56-
<th scope="col" className="px-6 py-3">Url</th>
5756
<th scope="col" className="px-6 py-3">Number of repos</th>
5857
</tr>
5958
</thead>
6059
<tbody>
6160
{organizationsWithReposByRepoNumber.map(organization =>
6261
<tr className="border-b dark:border-gray-700" key={organization.id}>
63-
<td className="px-6 py-4">
64-
{organization.name}
65-
</td>
6662
<td className="px-6 py-4">
6763
<a className="text-blue-600 dark:text-blue-500 hover:underline"
68-
href={organization.url}>{organization.owner}</a>
64+
href={organization.url}>{organization.name}</a>
6965
</td>
7066
<td className="px-6 py-4">
7167
{organization.repos}

0 commit comments

Comments
 (0)