File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -53,19 +53,15 @@ export const OrganizationsOnGithub = () => {
53
53
< thead className = "text-m uppercase" >
54
54
< tr >
55
55
< th scope = "col" className = "px-6 py-3" > Name</ th >
56
- < th scope = "col" className = "px-6 py-3" > Url</ th >
57
56
< th scope = "col" className = "px-6 py-3" > Number of repos</ th >
58
57
</ tr >
59
58
</ thead >
60
59
< tbody >
61
60
{ organizationsWithReposByRepoNumber . map ( organization =>
62
61
< tr className = "border-b dark:border-gray-700" key = { organization . id } >
63
- < td className = "px-6 py-4" >
64
- { organization . name }
65
- </ td >
66
62
< td className = "px-6 py-4" >
67
63
< 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 >
69
65
</ td >
70
66
< td className = "px-6 py-4" >
71
67
{ organization . repos }
You can’t perform that action at this time.
0 commit comments