Skip to content

Commit

Permalink
hotFix:회원가입 가게명 정규식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
(hoooooony) committed Sep 2, 2024
1 parent 9b167e3 commit 0557cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/page/Auth/Signup/components/ownerInfoStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default function OwnerInfoStep({ onSearch, setIsStepComplete }: OwnerInfo
message: '가게명을 입력해주세요',
},
pattern: {
value: /^[가-힣a-zA-Z\s]+$/,
value: /^[가-힣a-zA-Z0-9\s\W]+$/,
message: '유효한 가게명을 입력해주세요',
},
})}
Expand Down

0 comments on commit 0557cc2

Please sign in to comment.