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
committed by Anoop M D
parent 7506f83800
commit ab9befd773

View File

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