Skip to content

Commit 75773c8

Browse files
committed
## v2.0.2
* `fix` fixes typo
1 parent fd1307f commit 75773c8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v2.0.2
4+
5+
* `fix` fixes typo
6+
37
## v2.0.1
48

59
* `new` support lower resolutions by switching to single letters

app/components/ControlPanel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ const ControlPanel = (): ReactElement => {
1414
const sortButtonProps = { activeSort, setActiveSort };
1515
const sortOptions: { sortBy: SortVariant; text: string; shortcut: string }[] = [
1616
{ sortBy: 'points', text: 'points', shortcut: 'P' },
17-
{ sortBy: 'time', text: 'pime', shortcut: 'T' },
18-
{ sortBy: 'comments', text: 'pomments', shortcut: 'C' },
19-
{ sortBy: 'default', text: 'peset', shortcut: 'R' },
17+
{ sortBy: 'time', text: 'time', shortcut: 'T' },
18+
{ sortBy: 'comments', text: 'comments', shortcut: 'C' },
19+
{ sortBy: 'default', text: 'reset', shortcut: 'R' },
2020
];
2121

2222
useEffect(() => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hacked_news_sorted",
33
"displayName": "Hacker News Sorted",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"description": "Gives the ability to sort posts on the news.ycombinator.com site by the number of points, time, or comments.",
66
"author": "Leonid Svyatov <leonid@svyatov.com>",
77
"scripts": {

0 commit comments

Comments
 (0)