Skip to content

Commit

Permalink
refactor: 스토리북 파일을 임의로 변경합니다.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zero-1016 committed Sep 27, 2024
1 parent 3df7f2a commit 3f50f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/input-field/InputField.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const Primary: StoryObj<typeof InputField> = {
const [error, setError] = useState('');

const onChangeText = useCallback((text: string) => {
if (text.length > 10) {
if (text.length > 8) {
setError('올바르지 않은 형식입니다');
} else {
setError('');
Expand Down

0 comments on commit 3f50f0c

Please sign in to comment.