Skip to content

Commit 44ac328

Browse files
authored
Merge pull request #432 from Soogyo-In/fix/user-name-validation-message
fix: user name validation message
2 parents 217a17a + 5fc5ebf commit 44ac328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/register/RegisterFormContainer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const RegisterFormContainer: React.FC<RegisterFormContainerProps> = ({
7676
},
7777
username: (text: string) => {
7878
if (!/^[a-z0-9-_]{3,16}$/.test(text)) {
79-
return '아이디는 3~16자의 알파벳,숫자,혹은 - _ 으로 이루어져야 합니다.';
79+
return '아이디는 3~16자의 알파벳 소문자,숫자,혹은 - _ 으로 이루어져야 합니다.';
8080
}
8181
},
8282
shortBio: (text: string) => {

0 commit comments

Comments
 (0)