🔧 Renamed IMPORT_* to LIBRARY_*

This commit is contained in:
2022-02-03 00:19:32 -08:00
parent bcfc174829
commit c6265599de
14 changed files with 70 additions and 51 deletions

View File

@@ -6,7 +6,7 @@ import {
SETTINGS_DB_FLUSH_SUCCESS,
} from "../constants/action-types";
import {
IMPORT_SERVICE_BASE_URI,
LIBRARY_SERVICE_BASE_URI,
SETTINGS_SERVICE_BASE_URI,
} from "../constants/endpoints";
@@ -58,7 +58,7 @@ export const flushDb = () => async (dispatch) => {
});
const flushDbResult = await axios({
url: `${IMPORT_SERVICE_BASE_URI}/flushDb`,
url: `${LIBRARY_SERVICE_BASE_URI}/flushDb`,
method: "POST",
});