Skip to content

Commit b4bee53

Browse files
Fix #1298
1 parent 5da9aa0 commit b4bee53

File tree

1 file changed

+4
-4
lines changed
  • src/shared/components/Settings/Profile/BasicInfo

1 file changed

+4
-4
lines changed

src/shared/components/Settings/Profile/BasicInfo/index.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ export default class BasicInfo extends ConsentComponent {
457457
<div styleName="row">
458458
<div styleName="field col-1">
459459
<label htmlFor="firstName">
460-
Firstname
460+
First name
461461
</label>
462462
</div>
463463
<div styleName="field col-2">
@@ -468,7 +468,7 @@ export default class BasicInfo extends ConsentComponent {
468468
<div styleName="row">
469469
<div styleName="field col-1">
470470
<label htmlFor="lastName">
471-
Lastname
471+
Last name
472472
</label>
473473
</div>
474474
<div styleName="field col-2">
@@ -677,15 +677,15 @@ export default class BasicInfo extends ConsentComponent {
677677
<div styleName="row">
678678
<div styleName="field">
679679
<label htmlFor="firstName">
680-
Firstname
680+
First name
681681
<span styleName="text-required">* Required</span>
682682
</label>
683683

684684
<input id="firstName" name="firstName" type="text" placeholder="First Name" onChange={this.onUpdateInput} value={newBasicInfo.firstName} maxLength="64" required />
685685
</div>
686686
<div styleName="field">
687687
<label htmlFor="lastName">
688-
Lastname
688+
Last name
689689
<span styleName="text-required">* Required</span>
690690
</label>
691691
<input id="lastName" name="lastName" type="text" placeholder="Last Name" onChange={this.onUpdateInput} value={newBasicInfo.lastName} maxLength="64" required />

0 commit comments

Comments
 (0)