set default url to empty string

This commit is contained in:
Alex Holliday
2024-09-30 14:58:20 +08:00
parent 32eff933ca
commit ca30dcc33c

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",
};