Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: omit unnecessary carridge return in code block #5

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions docs/ja/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,7 @@ export async function action({ request }: ActionFunctionArgs) {

const message = await sendMessage(submission.value);

//
メッセージが送信されなかった場合は、フォームエラーを返します。
//メッセージが送信されなかった場合は、フォームエラーを返します。
if (!message.sent) {
return submission.reply({
formErrors: ['Failed to send the message. Please try again later.'],
Expand Down Expand Up @@ -267,8 +266,7 @@ export default function ContactUs() {
// useFormフックは、フォームをレンダリングするために必要なすべてのメタデータを返します。
// そして、フォームが送信されたときに最初の無効なフィールドにフォーカスします。
const [form, fields] = useForm({
//
これにより、サーバーからのエラーが同期されるだけでなく、
//これにより、サーバーからのエラーが同期されるだけでなく、
// フォームのデフォルト値としても使用されます。
// プログレッシブエンハンスメントのためにドキュメントが再読み込みされた場合、

Expand Down Expand Up @@ -322,7 +320,7 @@ export default function ContactUs() {
}
```

## バリデーションの体験向上
## バリデーション体験の向上

現在、コンタクトフォームはユーザーが送信したときにのみ検証されます。タイピングするたびにユーザーに早期フィードバックを提供したい場合はどうすればよいでしょうか?

Expand Down Expand Up @@ -388,8 +386,7 @@ export default function ContactUs() {
const [form, fields] = useForm({
// ... 以前の設定

//
クライアント上で同じ検証ロジックを実行する
//クライアント上で同じ検証ロジックを実行する
onValidate({ formData }) {
return parseWithZod(formData, { schema });
},
Expand Down