Use LACONIC_HOSTED_CONFIG #1

Merged
telackey merged 5 commits from telackey/csss into main 2024-02-16 03:59:10 +00:00
Showing only changes of commit 29c2777f41 - Show all commits

View File

@ -1,7 +1,7 @@
const apiUrl = "LACONIC_HOSTED_CONFIG_app_api_url"; const apiUrl = "LACONIC_HOSTED_CONFIG_app_api_url";
export const fetchAllStatuses = async () => { export const fetchAllStatuses = async () => {
const res = await fetch(baseUrl); const res = await fetch(apiUrl);
if (!res.ok) { if (!res.ok) {
throw new Error('Network response was not ok') throw new Error('Network response was not ok')
} }
@ -13,7 +13,7 @@ export const fetchLogs = async (id: string) => {
if (!id) { if (!id) {
return ""; return "";
} }
let url = `${baseUrl}/log/${id}` let url = `${apiUrl}/log/${id}`
const res = await fetch(url); const res = await fetch(url);
if (!res.ok) { if (!res.ok) {
throw new Error('Network response was not ok') throw new Error('Network response was not ok')