summaryrefslogtreecommitdiff
path: root/source/features
diff options
context:
space:
mode:
authorGravatar Federico Brigante <github@bfred.it> 2019-02-21 18:30:15 +0800
committerGravatar Sindre Sorhus <sindresorhus@gmail.com> 2019-02-21 17:30:15 +0700
commit8082da9991c42ecc0b63d9f9acfe8a04d1ea9f7a (patch)
treefee458bdd5df4683d7e0a76295e0bd86e84e201d /source/features
parent26dd1fe7b7209bd3fcec518acec11f33b3db8665 (diff)
downloadrefined-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.tsx8
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>
);
}