fix: more language cleanup

This commit is contained in:
Tom Moor
2019-06-25 22:06:20 -07:00
parent b93824915d
commit 5f8956e5c6
2 changed files with 5 additions and 5 deletions

View File

@@ -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)`

View File

@@ -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>