Skip to content

Commit

Permalink
Fix delete response data
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Jan 5, 2025
1 parent 9dccab8 commit 72bb8e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FetchClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ export class FetchClient {
options,
{
method: "DELETE",
headers: options?.headers ?? {},
headers: { "Content-Type": "application/json", ...options?.headers },
},
);
}
Expand Down

0 comments on commit 72bb8e7

Please sign in to comment.