Skip to content

Commit

Permalink
fix: parse stringified number to number
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Dec 22, 2024
1 parent c09ab6f commit b165243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concurrency/ConcurrencyClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ export class ConcurrencyClient {
method: 'POST',
headers: { authorization: this.password }
});
return response.body;
return Number(response.body);
}
}

0 comments on commit b165243

Please sign in to comment.