Skip to content

Commit

Permalink
Merge pull request #6 from coji/gitlocalize-28496
Browse files Browse the repository at this point in the history
一部コード上のコメントの翻訳漏れ対応 ホワイトスペースズレを修正
  • Loading branch information
coji authored Mar 1, 2024
2 parents 892ba6e + cc452cd commit d0dcd3d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/ja/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,15 +269,14 @@ export default function ContactUs() {
//これにより、サーバーからのエラーが同期されるだけでなく、
// フォームのデフォルト値としても使用されます。
// プログレッシブエンハンスメントのためにドキュメントが再読み込みされた場合、

// 最後の結果からすべてのバリデーション属性を導出するために使用します。
constraint: getZodConstraint(schema),
});

return (
<Form
method="post"
{/* 追加で必要な属性は `id` 属性のみです。*/}
{/* 追加で必要な属性は `id` 属性のみです。*/}
id={form.id}
aria-invalid={form.errors ? true : undefined}
aria-describedby={form.errors ? form.errorId : undefined}
Expand Down Expand Up @@ -396,8 +395,8 @@ export default function ContactUs() {
<Form
method="post"
id={form.id}
{/* クライアント検証には `onSubmit` ハンドラが必要です。 */}
onSubmit={form.onSubmit}
{/* クライアント検証には `onSubmit` ハンドラが必要です。 */}
onSubmit={form.onSubmit}
aria-invalid={form.errors ? true : undefined}
aria-describedby={form.errors ? form.errorId : undefined}
>
Expand Down

0 comments on commit d0dcd3d

Please sign in to comment.