File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ const fetchMilestonesInNewerOrderUpTo = async (latestVersion: string) => {
79
79
// sometimes a new mile stone is missing.
80
80
const allMilestones =
81
81
[
82
- ...await githubFetch < Milestone [ ] > ( "https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=open" ) ,
83
- ...await githubFetch < Milestone [ ] > ( "https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=closed" ) ;
82
+ ...( await githubFetch < Milestone [ ] > ( "https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=open" ) ) ,
83
+ ...( await githubFetch < Milestone [ ] > ( "https://api.github.com/repos/kyuridenamida/atcoder-tools/milestones?state=closed" ) )
84
84
] ;
85
85
return allMilestones . filter ( milestone => {
86
86
if ( ! isValidVersion ( milestone . title ) ) {
You can’t perform that action at this time.
0 commit comments