This commit is contained in:
MartinBraquet
2025-10-16 00:27:58 +02:00
parent b1d1396944
commit c7d6ae6995

View File

@@ -67,7 +67,7 @@ export async function baseApiCall(props: {
body:
params == null || method === 'GET' ? undefined : JSON.stringify(params),
})
console.log('Request', req)
// console.log('Request', req)
return fetch(req).then(async (resp) => {
const json = (await resp.json()) as { [k: string]: any }
if (!resp.ok) {