Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] 닉네임이 공백으로 수정 가능한 이슈 #455

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/hooks/useNickname.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ const useNickname = (initialNickName?: string) => {
{ nickname },
{
onSuccess: () => {
if (!validateNickname(nickname)) {
setMassageState({
errorMsg: '2~20자 이내의 한글, 영문, 숫자로만 입력해 주세요.',
validMsg: '',
});
return;
}
setMassageState({
errorMsg: '',
validMsg: '사용 가능한 닉네임입니다.',
Expand All @@ -30,9 +37,10 @@ const useNickname = (initialNickName?: string) => {
};

const handleNicknameChange = (value: string) => {
setNickname(value);
const newValue = value.replace(/ /g, '');
setNickname(newValue);

if (!validateNickname(value)) {
if (!validateNickname(newValue)) {
setMassageState({
errorMsg: '2~20자 이내의 한글, 영문, 숫자로만 입력해 주세요.',
validMsg: '',
Expand Down
Loading