Skip to content

Commit

Permalink
fix benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpicado committed Sep 4, 2021
1 parent ef60e83 commit ca86082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/submit-metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ try {
'x-metrics-commit-hash': commit,
},
})
.then((res) => res.text()) // expecting a json response
.then((json) => {
.then((res: any) => res.text()) // expecting a json response
.then((json: any) => {
debug('response %o', json);
});
} catch (error) {
Expand Down

0 comments on commit ca86082

Please sign in to comment.