From 0f3e89900a947bbb946afa313d8b0174ea3f1cb6 Mon Sep 17 00:00:00 2001 From: andres Date: Sun, 16 Jul 2023 16:37:19 +0200 Subject: [PATCH] refactor imports/exports --- .../decorators/is-order-by-constraint.decorator.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/infrastructure/decorators/is-order-by-constraint.decorator.ts b/src/infrastructure/decorators/is-order-by-constraint.decorator.ts index e93df91..4f37bfa 100644 --- a/src/infrastructure/decorators/is-order-by-constraint.decorator.ts +++ b/src/infrastructure/decorators/is-order-by-constraint.decorator.ts @@ -9,7 +9,6 @@ import { @ValidatorConstraint({ async: false }) export class IsOrderByConstraint implements ValidatorConstraintInterface { validate(orderBy: string | null, args: ValidationArguments) { - console.log(orderBy) if (!orderBy || orderBy === 'null' || orderBy === '') { return true }