Skip to content

Commit

Permalink
fix: (#281) 치명적 버그 발견
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Jan 11, 2023
1 parent 5a08fba commit c5f1f6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ value class Password(
*
* non-space, $ , + , - , _ , a ~ z , A ~ Z , 0 ~ 9
*/
const val PATTERN = """(?=.*[a-zA-Z])(?=.*\d)(?=^[\w$+-]{$MIN_LENGTH,$MAX_LENGTH$).*"""
const val PATTERN = """(?=.*[a-zA-Z])(?=.*\d)(?=^[\w$+-]{$MIN_LENGTH,$MAX_LENGTH}$).*"""
}
}

0 comments on commit c5f1f6f

Please sign in to comment.