From c7d6ae69954163ea76763b170ba33dccebfffd40 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 16 Oct 2025 00:27:58 +0200 Subject: [PATCH] Hide log --- common/src/util/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/util/api.ts b/common/src/util/api.ts index 3192774b..e1fed8b9 100644 --- a/common/src/util/api.ts +++ b/common/src/util/api.ts @@ -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) {