diff --git a/src/Controllers/team.controller.ts b/src/Controllers/team.controller.ts index 4b49936..7680cf5 100644 --- a/src/Controllers/team.controller.ts +++ b/src/Controllers/team.controller.ts @@ -49,8 +49,6 @@ export const getTeams = async (req: Request<{}, {}, {}, { showHidden?: string }> const show: boolean = req.query.showHidden === "true"; - logger.info(typeof show); - const teams = await prisma.team.findMany({ where: { verified: { equals: show ? undefined : true } }, select: basicTeam,