diff --git a/docs/api/yup/parseWithYup.md b/docs/api/yup/parseWithYup.md index 29759ff7..a1e5df25 100644 --- a/docs/api/yup/parseWithYup.md +++ b/docs/api/yup/parseWithYup.md @@ -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(), diff --git a/docs/ja/api/yup/parseWithYup.md b/docs/ja/api/yup/parseWithYup.md index 55c8604b..36a016bb 100644 --- a/docs/ja/api/yup/parseWithYup.md +++ b/docs/ja/api/yup/parseWithYup.md @@ -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(),