diff --git a/packages/common/http/src/request.ts b/packages/common/http/src/request.ts index 2e55613ff6..7673e71f0e 100644 --- a/packages/common/http/src/request.ts +++ b/packages/common/http/src/request.ts @@ -266,9 +266,9 @@ export class HttpRequest { if (this.body === null) { return null; } - // FormData instances are URL encoded on the wire. + // FormData bodies rely on the browser's content type assignment. if (isFormData(this.body)) { - return 'multipart/form-data'; + return null; } // Blobs usually have their own content type. If it doesn't, then // no type can be inferred.