fix: more language cleanup
This commit is contained in:
@@ -83,7 +83,7 @@ class Profile extends React.Component<Props> {
|
||||
<PageTitle title="Profile" />
|
||||
<h1>Profile</h1>
|
||||
<ProfilePicture column>
|
||||
<LabelText>Picture</LabelText>
|
||||
<LabelText>Photo</LabelText>
|
||||
<AvatarContainer>
|
||||
<ImageUpload
|
||||
onSuccess={this.handleAvatarUpload}
|
||||
@@ -98,7 +98,7 @@ class Profile extends React.Component<Props> {
|
||||
</ProfilePicture>
|
||||
<form onSubmit={this.handleSubmit} ref={ref => (this.form = ref)}>
|
||||
<Input
|
||||
label="Name"
|
||||
label="Full name"
|
||||
value={this.name}
|
||||
onChange={this.handleNameChange}
|
||||
required
|
||||
@@ -139,7 +139,7 @@ const ProfilePicture = styled(Flex)`
|
||||
const avatarStyles = `
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
border-radius: 8px;
|
||||
`;
|
||||
|
||||
const AvatarContainer = styled(Flex)`
|
||||
|
||||
@@ -44,8 +44,8 @@ class Tokens extends React.Component<Props> {
|
||||
<h1>API Tokens</h1>
|
||||
|
||||
<HelpText>
|
||||
You can create an unlimited amount of personal API tokens to hack on
|
||||
Outline. For more details about the API take a look at the{' '}
|
||||
You can create an unlimited amount of personal tokens to authenticate
|
||||
with the API. For more details about the API take a look at the{' '}
|
||||
<a href="/developers">developer documentation</a>.
|
||||
</HelpText>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user