Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonclchua committed Sep 7, 2023
1 parent 724ee30 commit 9f73eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/api/job/dtos/create-job-dto.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PaymentMethod, Tag } from "@prisma/client";
import { $Enums, PaymentMethod, Tag } from "@prisma/client";
import { ApiProperty } from "@nestjs/swagger";
import {
IsArray,
Expand All @@ -20,7 +20,7 @@ export class CreateJobDto {
@ApiProperty()
@IsArray()
@IsEnum(Tag, { each: true })
tags: Tag[];
tags: $Enums.Tag[];

@ApiProperty()
@IsOptional()
Expand Down

0 comments on commit 9f73eab

Please sign in to comment.