Merge pull request #1978 from Owaiseimdad/Quick-Fix-for-settings-setBaseUrl

Quick fix for settings save page api call
This commit is contained in:
Alexander Holliday
2025-03-20 10:44:04 -07:00
committed by GitHub
+3 -1
View File
@@ -30,7 +30,9 @@ export const getAppSettings = createAsyncThunk(
export const updateAppSettings = createAsyncThunk(
"settings/updateSettings",
async ({ settings }, thunkApi) => {
networkService.setBaseUrl(settings.apiBaseUrl);
// The reason for commenting is that, previously, we had the flexibility to set the API base.
// However, now this could lead to an issue where it gets set to undefined.
// networkService.setBaseUrl(settings.apiBaseUrl);
try {
const parsedSettings = {
apiBaseUrl: settings.apiBaseUrl,