Skip to content

Commit

Permalink
Adjust copy in Settings and Add screen
Browse files Browse the repository at this point in the history
  • Loading branch information
charlietango committed Feb 26, 2022
1 parent 53d44c9 commit a7a2de1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/screen/AddAccount/AddAccount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ export default function AddAccount(): JSX.Element {
placeholder={'jane.doe@example.com'}
keyboardType={'email-address'}
description={
'Add your username / email to be able to manage multiple accounts on the same website.'
'Add your username/email to be able to manage multiple accounts on the same website.'
}
onChange={(value: string) => setUsername(value)}
/>
<TextInput
label={'Service provider website'}
value={issuer}
placeholder={'www.example.com'}
description={'Add the website so you can find your access token easily.'}
description={'We ask for this because we want to display the logo.'}
onChange={(value: string) => setIssuer(value)}
/>
<ColorPicker onSelect={setColor} />
Expand Down
2 changes: 1 addition & 1 deletion src/screen/Settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function Settings(): JSX.Element {
<SectionTitle>Security & Privacy</SectionTitle>
<Switch
checked={settings.localAuthenticationStatus}
label={'Enable Face ID / Touch Id'}
label={'Enable Face ID / Touch ID'}
onChange={handleLocalAuthenticationChange}
/>
<SectionTitle>Data</SectionTitle>
Expand Down

0 comments on commit a7a2de1

Please sign in to comment.