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.' }));