diff --git a/src/api/apiService.ts b/src/api/apiService.ts index 727849c..834ea7e 100644 --- a/src/api/apiService.ts +++ b/src/api/apiService.ts @@ -17,8 +17,6 @@ async function fetchAPI(endpoint: string, method: string = 'GET', body?: object) body: body ? JSON.stringify(body) : null }); - console.log(`${BASE_URL}${endpoint}`, body, method, token); - if (!response.ok) { if (endpoint != '/api' && response.status == 401) { authStore.set({ diff --git a/src/components/ConfigEditor.svelte b/src/components/ConfigEditor.svelte index bebdf3d..582d9b0 100644 --- a/src/components/ConfigEditor.svelte +++ b/src/components/ConfigEditor.svelte @@ -2,7 +2,6 @@ let { config, tracks, id } = $props(); let editedConfig = { ...config['event'] }; editedConfig.sessions = JSON.stringify(editedConfig.sessions); - console.log(editedConfig);