From e23198a63aa393f7d434b41c5c9a406a9cb4450f Mon Sep 17 00:00:00 2001 From: uttk <46495635+uttk@users.noreply.github.com> Date: Fri, 9 Aug 2024 05:30:17 +0900 Subject: [PATCH] docs: fix typo in parseWithYup api reference (#708) --- docs/api/yup/parseWithYup.md | 4 ++-- docs/ja/api/yup/parseWithYup.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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(),