From 086259b0ab7d0f270622717b4350c3adb7a98a11 Mon Sep 17 00:00:00 2001 From: Victor Pino Date: Wed, 19 Jun 2024 15:37:46 -0400 Subject: [PATCH] feat(src): format code --- src/common/dtos/create.loan.dto.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/common/dtos/create.loan.dto.ts b/src/common/dtos/create.loan.dto.ts index 2548bf6..b635972 100644 --- a/src/common/dtos/create.loan.dto.ts +++ b/src/common/dtos/create.loan.dto.ts @@ -1,4 +1,10 @@ -import { IsUUID, IsArray, ArrayNotEmpty, IsEnum, IsString } from 'class-validator'; +import { + IsUUID, + IsArray, + ArrayNotEmpty, + IsEnum, + IsString, +} from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; import { ProductType } from '../enums/product-type.enum';