From 0472c5e90b985a3c28e9aeb79b2f39b915c74d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Tue, 1 Jul 2025 21:45:39 +0200 Subject: [PATCH] remove another console log --- src/api/authService.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/authService.ts b/src/api/authService.ts index b041d2e..532a556 100644 --- a/src/api/authService.ts +++ b/src/api/authService.ts @@ -16,7 +16,6 @@ export const login = async (event: RequestEvent, username: string, password: str }); if (!response.ok) { - console.log(response); const errorData = await response .json() .catch(() => ({ error: 'Invalid username or password.' }));