We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3c6142 commit a5437f6Copy full SHA for a5437f6
1 file changed
src/App.tsx
@@ -21,13 +21,14 @@ interface HNStory {
21
descendants?: number
22
}
23
24
-type Duration = '2w' | '1' | '3' | '6'
+type Duration = '2w' | '1' | '3' | '6' | '12'
25
26
const DURATION_OPTIONS: { value: Duration; label: string; days: number }[] = [
27
{ value: '2w', label: '2 weeks', days: 14 },
28
{ value: '1', label: '1 month', days: 30 },
29
{ value: '3', label: '3 months', days: 90 },
30
{ value: '6', label: '6 months', days: 180 },
31
+ { value: '12', label: '1 year', days: 365 },
32
]
33
34
function App() {
0 commit comments