Skip to content

Commit

Permalink
fix: import 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Conut-1 committed May 31, 2024
1 parent cd890b7 commit 84c3893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nestjs-BE/server/src/boards/dto/create-board.dto.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString, MaxLength } from 'class-validator';
import { MAX_NAME_LENGTH } from 'src/config/magic-number';
import { MAX_NAME_LENGTH } from '../../config/magic-number';

export class CreateBoardDto {
@ApiProperty({ description: '보드 이름' })
Expand Down

0 comments on commit 84c3893

Please sign in to comment.