From e8d790d79954c8baac68638b0bf8cca0be441660 Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Tue, 12 Nov 2024 16:16:31 +0100 Subject: [PATCH] chore(api): remove console.logs --- apps/api/src/utils/authentication.ts | 2 +- apps/api/src/utils/errors/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/api/src/utils/authentication.ts b/apps/api/src/utils/authentication.ts index 41d4d4f..250037a 100644 --- a/apps/api/src/utils/authentication.ts +++ b/apps/api/src/utils/authentication.ts @@ -54,6 +54,6 @@ export const verifyAuthentication = async (c: Context) => { if (!userEntry) { throw new HTTPException(401, { message: 'Unauthorized' }) } - // console.log(userEntry) + return userEntry.id } diff --git a/apps/api/src/utils/errors/index.ts b/apps/api/src/utils/errors/index.ts index ce3ff75..f86c0c3 100644 --- a/apps/api/src/utils/errors/index.ts +++ b/apps/api/src/utils/errors/index.ts @@ -106,7 +106,6 @@ export function handleZodError( }, c: Context, ) { - console.log('asdasasdas') if (!result.success) { const error = SchemaError.fromZod(result.error, c) return c.json>>(