Skip to content

Commit

Permalink
docs(start/tutorial): sort arguments (#10040)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsukina-7mochi authored Sep 30, 2024
1 parent 4dded71 commit 06de912
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@
- toufiqnuur
- toyozaki
- TrySound
- Tsukina-7mochi
- ttsirkia
- turkerdev
- tvanantwerp
Expand Down
8 changes: 4 additions & 4 deletions docs/start/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -634,11 +634,11 @@ export default function EditContact() {
<p>
<span>Name</span>
<input
defaultValue={contact.first}
aria-label="First name"
defaultValue={contact.first}
name="first"
type="text"
placeholder="First"
type="text"
/>
<input
aria-label="Last name"
Expand Down Expand Up @@ -732,11 +732,11 @@ Open up `contacts.$contactId_.edit.tsx` and look at the `form` elements. Notice

```tsx filename=app/routes/contacts.$contactId_.edit.tsx lines=[4]
<input
defaultValue={contact.first}
aria-label="First name"
defaultValue={contact.first}
name="first"
type="text"
placeholder="First"
type="text"
/>
```

Expand Down

0 comments on commit 06de912

Please sign in to comment.