diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | app/components/Login.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f7329f471d..57cc9a58fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ Line wrap the file at 100 chars. Th - Bundle an IP address with the app and introduce a disk cache fallback method for when the DNS resolution of the Mullvad API server hostname fails. - Manage firewall rules on Windows depending on connection state. +- Improve account token hint to be the same length as an expected token. ### Fixed - Fix a bug in account input field that advanced the cursor to the end regardless its prior diff --git a/app/components/Login.js b/app/components/Login.js index fb2930e35f..b711f089b5 100644 --- a/app/components/Login.js +++ b/app/components/Login.js @@ -306,7 +306,7 @@ export default class Login extends Component<LoginPropTypes, State> { <View style={ styles.account_input_backdrop}> <AccountInput style={styles.account_input_textfield} type="text" - placeholder="e.g 0000 0000 0000" + placeholder="0000 0000 0000 0000" placeholderTextColor={colors.blue40} onFocus={ this._onFocus } onBlur={ this._onBlur } |
