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 a4e38ad commit 844aa24Copy full SHA for 844aa24
src/templates/core/xhr/sendRequest.hbs
@@ -10,7 +10,7 @@ export const sendRequest = async (
10
const xhr = new XMLHttpRequest();
11
xhr.open(options.method, url, true);
12
xhr.withCredentials = config.WITH_CREDENTIALS;
13
- xhr.responseType = options.responseType;
+ xhr.responseType = options.responseType ?? "";
14
15
headers.forEach((value, key) => {
16
xhr.setRequestHeader(key, value);
0 commit comments