Skip to content

Commit

Permalink
fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Feiyang1 committed Sep 10, 2021
1 parent 8d630c0 commit d26b205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo-scripts/changelog-generator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async function getFixedIssueLink(
{
method: 'GET'
}
).then(data => data.json());
).then(data => data.json()) as { body: string };

const match = fixedIssueRegex.exec(body);
if (!match) {
Expand Down

0 comments on commit d26b205

Please sign in to comment.