We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5824390 commit ab9b444Copy full SHA for ab9b444
src/communication/NetworkClient.ts
@@ -86,7 +86,7 @@ async function processFetchResponse(response: ResponseWithIdempotencyKey) {
86
// this should have been a 204, but we'll be lenient...
87
if (body.length === 0 && isSuccessStatus) return true;
88
// Parse the response body as JSON.
89
- // We could check the content-type header first here, but we always expect thie mollie API to return JSON.
+ // We could check the content-type header first here, but we always expect the mollie API to return JSON.
90
let json;
91
try {
92
json = JSON.parse(body);
0 commit comments