chore(api): remove console.logs

This commit is contained in:
Lars Hampe 2024-11-12 16:16:31 +01:00
parent 618a2f67a4
commit e8d790d799
2 changed files with 1 additions and 2 deletions

View File

@ -54,6 +54,6 @@ export const verifyAuthentication = async (c: Context) => {
if (!userEntry) { if (!userEntry) {
throw new HTTPException(401, { message: 'Unauthorized' }) throw new HTTPException(401, { message: 'Unauthorized' })
} }
// console.log(userEntry)
return userEntry.id return userEntry.id
} }

View File

@ -106,7 +106,6 @@ export function handleZodError(
}, },
c: Context, c: Context,
) { ) {
console.log('asdasasdas')
if (!result.success) { if (!result.success) {
const error = SchemaError.fromZod(result.error, c) const error = SchemaError.fromZod(result.error, c)
return c.json<z.infer<ReturnType<typeof createErrorSchema>>>( return c.json<z.infer<ReturnType<typeof createErrorSchema>>>(