refactor(products): remove unused import from DTO file

This commit cleans up the `CreateProductDto` class by removing the unused import `optional` from the `zod` library. This helps in maintaining code cleanliness and potentially improving application performance.
This commit is contained in:
Mathis H (Avnyr) 2024-07-24 20:26:37 +02:00
parent 38009bfbcb
commit b8a472bfcd
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -6,7 +6,6 @@ import {
MaxLength, Min, MaxLength, Min,
MinLength MinLength
} from "class-validator"; } from "class-validator";
import { optional } from "zod";
export class CreateProductDto { export class CreateProductDto {
@MinLength(1) @MinLength(1)