Skip to content

Commit

Permalink
#16 feat: 식별번호 길이가 5 넘지 않으면 회원가입 불가
Browse files Browse the repository at this point in the history
  • Loading branch information
leejin-rho committed Jul 4, 2024
1 parent f840619 commit 113edc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ const SignUp: NextPage = () => {
tempName.length === 0 ||
nameError.status ||
userInfo.nickname.length === 0 ||
userInfo.identifier.length >= 6
userInfo.identifier.length < 6
}
/>
</button>
Expand Down

0 comments on commit 113edc3

Please sign in to comment.