Skip to content

Commit

Permalink
docs: fix typo in tutorial.md (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesoji committed May 5, 2024
1 parent a774b45 commit 94b9c77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.md
Expand Up @@ -105,12 +105,12 @@ export default function ContactUs() {
<div>
<label>Email</label>
<input type="email" name="email" defaultValue={result?.payload.email} />
<div>{result?.fieldsErrors.email}</div>
<div>{result?.fieldErrors.email}</div>
</div>
<div>
<label>Message</label>
<textarea name="message" defaultValue={result?.payload.message} />
<div>{result?.fieldsErrors.message}</div>
<div>{result?.fieldErrors.message}</div>
</div>
<button>Send</button>
</Form>
Expand Down

0 comments on commit 94b9c77

Please sign in to comment.