diff options
author | 2019-02-21 18:30:15 +0800 | |
---|---|---|
committer | 2019-02-21 17:30:15 +0700 | |
commit | 8082da9991c42ecc0b63d9f9acfe8a04d1ea9f7a (patch) | |
tree | fee458bdd5df4683d7e0a76295e0bd86e84e201d /source/features | |
parent | 26dd1fe7b7209bd3fcec518acec11f33b3db8665 (diff) | |
download | refined-github-8082da9991c42ecc0b63d9f9acfe8a04d1ea9f7a.tar.gz refined-github-8082da9991c42ecc0b63d9f9acfe8a04d1ea9f7a.tar.zst refined-github-8082da9991c42ecc0b63d9f9acfe8a04d1ea9f7a.zip |
Revert "Find a user’s most recently updated repositories in their profile" (#1802)
Diffstat (limited to 'source/features')
-rw-r--r-- | source/features/show-user-top-repositories.tsx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/features/show-user-top-repositories.tsx b/source/features/show-user-top-repositories.tsx index 1772836f..fd9da4b7 100644 --- a/source/features/show-user-top-repositories.tsx +++ b/source/features/show-user-top-repositories.tsx @@ -1,6 +1,6 @@ /* -Find a user’s most starred and most recent repositories in their profile. -https://user-images.githubusercontent.com/13842856/53066546-66760b00-349e-11e9-97f3-263e3cff54e5.png +Find a user’s most starred repositories in their profile. +https://user-images.githubusercontent.com/1402241/48474026-43e3ae80-e82c-11e8-93de-159ad4c6f283.png */ import React from 'dom-chef'; @@ -25,9 +25,7 @@ function init() { showcaseTitle.firstChild.after( ' / ', - <a href={buildUrl('stars')}>Top repositories</a>, - ' / ', - <a href={buildUrl('updated')}>Updated repositories</a> + <a href={buildUrl('stars')}>Top repositories</a> ); } |