remove another console log

This commit is contained in:
Fran Jurmanović
2025-07-01 21:45:39 +02:00
parent 8ccb8033d1
commit 0472c5e90b

View File

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