From 84a49150d7e6e2856aa7e6f9337d603487b89594 Mon Sep 17 00:00:00 2001 From: Vincent Alamelle Date: Wed, 3 May 2023 12:24:10 +0200 Subject: [PATCH] remove unessecary import --- src/Customer/Notification.ts | 3 --- src/Customer/Office.ts | 1 - 2 files changed, 4 deletions(-) diff --git a/src/Customer/Notification.ts b/src/Customer/Notification.ts index d9f311a..07a22d0 100644 --- a/src/Customer/Notification.ts +++ b/src/Customer/Notification.ts @@ -1,9 +1,6 @@ import { - IsNotEmpty, IsDate, IsUrl, - IsOptional, - ValidateNested, } from "class-validator"; import UserHasNotification from "./UserHasNotification"; import Resource from "../Resource"; diff --git a/src/Customer/Office.ts b/src/Customer/Office.ts index 5c6f552..7cb07a5 100644 --- a/src/Customer/Office.ts +++ b/src/Customer/Office.ts @@ -1,7 +1,6 @@ import { IsNotEmpty, IsDate, - IsOptional, ValidateNested, } from "class-validator"; import Address from "./Address";