Skip to content

Commit d26b205

Browse files
committed
fix typing issue
1 parent 8d630c0 commit d26b205

File tree

1 file changed

+1
-1
lines changed
  • repo-scripts/changelog-generator

1 file changed

+1
-1
lines changed

repo-scripts/changelog-generator/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async function getFixedIssueLink(
9999
{
100100
method: 'GET'
101101
}
102-
).then(data => data.json());
102+
).then(data => data.json()) as { body: string };
103103

104104
const match = fixedIssueRegex.exec(body);
105105
if (!match) {

0 commit comments

Comments
 (0)