mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-14 21:48:39 -05:00
Merge pull request #1978 from Owaiseimdad/Quick-Fix-for-settings-setBaseUrl
Quick fix for settings save page api call
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user