Merge pull request #895 from bluewave-labs/fix/default-settings-state

set default url to empty string
This commit is contained in:
Alexander Holliday
2024-09-29 23:58:59 -07:00
committed by GitHub

View File

@@ -3,7 +3,7 @@ import { createAsyncThunk, createSlice } from "@reduxjs/toolkit";
const initialState = {
isLoading: false,
apiBaseUrl: "http://localhost:5000/api/v1",
apiBaseUrl: "",
logLevel: "debug",
};