Skip to content

Commit

Permalink
fix: πŸ› Prefer using the primitive string as a type name
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 7, 2024
1 parent 54f0522 commit ba44970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/tasks/interface-adapters/src/lib/dto/user-task.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class UserTaskDto {
updatedAt: Date | null;

@Field(() => String)
taskId: String;
taskId: string;

@Field(() => TaskDto, { nullable: true })
task: TaskDto | null;
Expand Down

0 comments on commit ba44970

Please sign in to comment.