Skip to content

Commit a5c76a2

Browse files
committed
fix: 질문 입력란의 최대 길이 수정
1 parent 45c3c08 commit a5c76a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/constants/APPLICATION_FORM.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ export const APPLICATION_FORM = {
99
},
1010
SHORT_TEXT: {
1111
placeholder: '답변입력란(최대 20자)',
12-
maxLength: 20,
12+
maxLength: 30,
1313
},
1414
LONG_TEXT: {
1515
placeholder: '답변입력란(최대 500자)',
16-
maxLength: 500,
16+
maxLength: 1000,
1717
},
1818
CHOICE: {
1919
placeholder: '항목(최대 20자)',
20-
maxLength: 20,
20+
maxLength: 30,
2121
},
2222
} as const;
2323

0 commit comments

Comments
 (0)