From 18be642181a5e0d640d9a86515290e396fb1322f Mon Sep 17 00:00:00 2001 From: 409 <409dev@protonmail.com> Date: Sun, 13 Jul 2025 00:22:48 +0200 Subject: [PATCH] remove old `console.log` --- frontend/utils/api.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/utils/api.ts b/frontend/utils/api.ts index 62e1993..c99ab4a 100644 --- a/frontend/utils/api.ts +++ b/frontend/utils/api.ts @@ -1,5 +1,4 @@ export function getApiUrl(path: string): string { const API_BASE_URL = useRuntimeConfig().public.apiBase; - console.log(API_BASE_URL); return `${API_BASE_URL}/${path}`; }