Skip to content

Commit

Permalink
[docs] update edit page in getting-started (#11463)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtliendo committed Apr 17, 2024
1 parent 8aa203c commit 89049ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions contributors.yml
Expand Up @@ -75,6 +75,7 @@
- ericschn
- faergeek
- FilipJirsak
- focusotter
- frontsideair
- fyzhu
- fz6m
Expand Down Expand Up @@ -179,6 +180,7 @@
- modex98
- morleytatro
- ms10596
- mtliendo
- ned-park
- nilubisan
- Nismit
Expand Down
10 changes: 5 additions & 5 deletions docs/start/tutorial.md
Expand Up @@ -768,14 +768,14 @@ export default function EditContact() {
aria-label="First name"
type="text"
name="first"
defaultValue={contact.first}
defaultValue={contact?.first}
/>
<input
placeholder="Last"
aria-label="Last name"
type="text"
name="last"
defaultValue={contact.last}
defaultValue={contact?.last}
/>
</p>
<label>
Expand All @@ -784,7 +784,7 @@ export default function EditContact() {
type="text"
name="twitter"
placeholder="@jack"
defaultValue={contact.twitter}
defaultValue={contact?.twitter}
/>
</label>
<label>
Expand All @@ -794,14 +794,14 @@ export default function EditContact() {
aria-label="Avatar URL"
type="text"
name="avatar"
defaultValue={contact.avatar}
defaultValue={contact?.avatar}
/>
</label>
<label>
<span>Notes</span>
<textarea
name="notes"
defaultValue={contact.notes}
defaultValue={contact?.notes}
rows={6}
/>
</label>
Expand Down

0 comments on commit 89049ce

Please sign in to comment.