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>>(