File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 75
75
- ericschn
76
76
- faergeek
77
77
- FilipJirsak
78
+ - focusotter
78
79
- frontsideair
79
80
- fyzhu
80
81
- fz6m
179
180
- modex98
180
181
- morleytatro
181
182
- ms10596
183
+ - mtliendo
182
184
- ned-park
183
185
- nilubisan
184
186
- Nismit
Original file line number Diff line number Diff line change @@ -768,14 +768,14 @@ export default function EditContact() {
768
768
aria- label= " First name"
769
769
type= " text"
770
770
name= " first"
771
- defaultValue= {contact .first }
771
+ defaultValue= {contact? .first }
772
772
/ >
773
773
< input
774
774
placeholder= " Last"
775
775
aria- label= " Last name"
776
776
type= " text"
777
777
name= " last"
778
- defaultValue= {contact .last }
778
+ defaultValue= {contact? .last }
779
779
/ >
780
780
< / p>
781
781
< label>
@@ -784,7 +784,7 @@ export default function EditContact() {
784
784
type= " text"
785
785
name= " twitter"
786
786
placeholder= " @jack"
787
- defaultValue= {contact .twitter }
787
+ defaultValue= {contact? .twitter }
788
788
/ >
789
789
< / label>
790
790
< label>
@@ -794,14 +794,14 @@ export default function EditContact() {
794
794
aria- label= " Avatar URL"
795
795
type= " text"
796
796
name= " avatar"
797
- defaultValue= {contact .avatar }
797
+ defaultValue= {contact? .avatar }
798
798
/ >
799
799
< / label>
800
800
< label>
801
801
< span> Notes< / span>
802
802
< textarea
803
803
name= " notes"
804
- defaultValue= {contact .notes }
804
+ defaultValue= {contact? .notes }
805
805
rows= {6 }
806
806
/ >
807
807
< / label>
You can’t perform that action at this time.
0 commit comments