From 7928ff0fa1a413f28b16706e57ea9e483949b2a9 Mon Sep 17 00:00:00 2001 From: suzukisan22 Date: Thu, 24 Oct 2024 00:02:55 +0900 Subject: [PATCH] fix: fix schema key --- docs/ja/complex-structures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ja/complex-structures.md b/docs/ja/complex-structures.md index 09a1a27a..510ef9c7 100644 --- a/docs/ja/complex-structures.md +++ b/docs/ja/complex-structures.md @@ -60,7 +60,7 @@ import { parseWithZod } from '@conform-to/zod'; import { z } from 'zod'; const schema = z.object({ - todos: z.array( + tasks: z.array( z.object({ title: z.string(), notes: z.string(),