Skip to content

Commit

Permalink
docs: fix typo in parseWithYup api reference (#708)
Browse files Browse the repository at this point in the history
  • Loading branch information
uttk authored Aug 8, 2024
1 parent a5e5e65 commit e23198a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/api/yup/parseWithYup.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Set it to **true** if you want to parse the form data with **validate** method f
## Example

```tsx
import { parseWithYup } from '@conform-to/zod';
import { parseWithYup } from '@conform-to/yup';
import { useForm } from '@conform-to/react';
import * as yup from 'zod';
import * as yup from 'yup';

const schema = yup.object({
email: yup.string().email(),
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/api/yup/parseWithYup.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Yup スキーマ、または Yup スキーマを返す関数のいずれかで
##

```tsx
import { parseWithYup } from '@conform-to/zod';
import { parseWithYup } from '@conform-to/yup';
import { useForm } from '@conform-to/react';
import * as yup from 'zod';
import * as yup from 'yup';

const schema = yup.object({
email: yup.string().email(),
Expand Down

0 comments on commit e23198a

Please sign in to comment.