UI: Change the default request auth mode from "none" to "inherit"

Fix #2315
This commit is contained in:
Ed Brannin 2024-11-01 09:45:44 -04:00
parent be4fc2d9ad
commit b2b568d0bc

View File

@ -762,7 +762,7 @@ export const newHttpRequest = (params) => (dispatch, getState) => {
formUrlEncoded: null
},
auth: auth ?? {
mode: 'none'
mode: 'inherit'
}
}
};