-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: 프로필 수정 페이지에서 이메일 표시 기능 추가 * refactor: getUserNickname 의 반환값을 닉네임이 없을 경우 빈 스트링으로 수정 닉네임 중복 검사에서 최초 회원가입 때 닉네임을 'Guest1234'로 설정할 경우 중복 검사가 정상 수행되지 않는 오류가 있습니다. 이전 사용자가 Guest1234로 닉네임을 설정할 경우도 있으니 이와 같이 변경합니다. * feat: 이메일 툴팁 기능 추가 * fix: 토큰 만료 후 로그인 페이지에서 메인페이지로 돌아갈 시 이전 쿼리 에러 상태가 회복되지 않아 이를 보완
- Loading branch information
1 parent
f01f7c4
commit 586326e
Showing
8 changed files
with
57 additions
and
23 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ export const getUserNickname = (): string => { | |
return user.nickname; | ||
} | ||
|
||
return 'Guest1234'; | ||
return ''; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters