diff --git a/src/utils/data-utils.ts b/src/utils/data-utils.ts index 023dcb6..b361c20 100644 --- a/src/utils/data-utils.ts +++ b/src/utils/data-utils.ts @@ -1,7 +1,7 @@ const apiUrl = "LACONIC_HOSTED_CONFIG_app_api_url"; export const fetchAllStatuses = async () => { - const res = await fetch(baseUrl); + const res = await fetch(apiUrl); if (!res.ok) { throw new Error('Network response was not ok') } @@ -13,7 +13,7 @@ export const fetchLogs = async (id: string) => { if (!id) { return ""; } - let url = `${baseUrl}/log/${id}` + let url = `${apiUrl}/log/${id}` const res = await fetch(url); if (!res.ok) { throw new Error('Network response was not ok')