Skip to content

Commit c86dd12

Browse files
committed
fix: SHORT_TEXT 입력란의 최대 길이를 100자로 수정
1 parent 76f7ba5 commit c86dd12

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
@@ -12,8 +12,8 @@ export const APPLICATION_FORM = {
1212
maxLength: 200,
1313
},
1414
SHORT_TEXT: {
15-
placeholder: '답변입력란(최대 30자)',
16-
maxLength: 30,
15+
placeholder: '답변입력란(최대 100자)',
16+
maxLength: 100,
1717
},
1818
LONG_TEXT: {
1919
placeholder: '답변입력란(최대 1000자)',

0 commit comments

Comments
 (0)