From e9277ba763b82fadf954d457e8a788bd95fc9bd7 Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 7 Oct 2024 12:01:01 +0200 Subject: [PATCH] Reorder imports in groups.dto.ts Rearranged the imports in `groups.dto.ts` to maintain alphabetical order and used double quotes for consistency with the rest of the project. This change does not alter functionality but improves code readability and maintainability. --- apps/backend/src/app/groups/groups.dto.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/backend/src/app/groups/groups.dto.ts b/apps/backend/src/app/groups/groups.dto.ts index 406b178..f5ac9ee 100644 --- a/apps/backend/src/app/groups/groups.dto.ts +++ b/apps/backend/src/app/groups/groups.dto.ts @@ -1,8 +1,8 @@ -import { IsString, MinLength, MaxLength } from 'class-validator'; +import { IsString, MaxLength, MinLength } from "class-validator"; export class CreateGroupDto { - @IsString() - @MinLength(4) - @MaxLength(64) - groupName: string; + @IsString() + @MinLength(4) + @MaxLength(64) + groupName: string; }