Skip to content

Commit

Permalink
fix(deepscan): removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-rocket committed Apr 5, 2024
1 parent 91d1f59 commit 6eb8dc7
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
NotFoundException
} from '@nestjs/common';
import { In, ILike, SelectQueryBuilder, DeleteResult, IsNull, FindManyOptions } from 'typeorm';
import { QueryOrder } from '@mikro-orm/knex';
import {
IOrganizationTeamCreateInput,
IOrganizationTeam,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
import { RelationId, JoinColumn } from 'typeorm';
import { Property } from '@mikro-orm/core';
import { IsString, IsOptional, IsDateString, IsUUID, IsNotEmpty, IsEnum, IsBoolean } from 'class-validator';
import { Exclude } from 'class-transformer';
import { FileStorageProviderEnum, IScreenshot, ITimeSlot, IUser } from '@gauzy/contracts';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
import { OnLoad, Property } from '@mikro-orm/core';
import { OnLoad } from '@mikro-orm/core';
import { RelationId, JoinColumn, AfterLoad } from 'typeorm';
import { IsBoolean, IsDateString, IsEnum, IsOptional, IsString, IsUUID } from 'class-validator';
import * as moment from 'moment';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
RelationId,
JoinTable
} from 'typeorm';
import { Property } from '@mikro-orm/core';
import { IsNumber, IsDateString, IsUUID, IsNotEmpty, IsOptional } from 'class-validator';
import {
ITimeSlot,
Expand Down

0 comments on commit 6eb8dc7

Please sign in to comment.