Skip to content

Commit 45c3c08

Browse files
committed
fix: 질문 제목 및 설명의 최대 길이 수정
1 parent 44a0728 commit 45c3c08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/constants/APPLICATION_FORM.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export const APPLICATION_FORM = {
22
QUESTION_TITLE: {
33
placeholder: '질문 제목을 입력해주세요(최대 20자)',
4-
maxLength: 20,
4+
maxLength: 50,
55
},
66
QUESTION_DESCRIPTION: {
77
placeholder: '질문 설명을 입력해주세요(최대 300자)',
8-
maxLength: 300,
8+
maxLength: 200,
99
},
1010
SHORT_TEXT: {
1111
placeholder: '답변입력란(최대 20자)',

0 commit comments

Comments
 (0)