We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 217a17a + 5fc5ebf commit 44ac328Copy full SHA for 44ac328
src/containers/register/RegisterFormContainer.tsx
@@ -76,7 +76,7 @@ const RegisterFormContainer: React.FC<RegisterFormContainerProps> = ({
76
},
77
username: (text: string) => {
78
if (!/^[a-z0-9-_]{3,16}$/.test(text)) {
79
- return '아이디는 3~16자의 알파벳,숫자,혹은 - _ 으로 이루어져야 합니다.';
+ return '아이디는 3~16자의 알파벳 소문자,숫자,혹은 - _ 으로 이루어져야 합니다.';
80
}
81
82
shortBio: (text: string) => {
0 commit comments