diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-08-08 18:02:49 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-08-08 18:02:49 +0200 |
| commit | 207a30aee5e324bf0d9b52da89d23143efafcb73 (patch) | |
| tree | d758b15be9440b4b93cf80c053de2717fb1e1ec4 /app/components/Support.js | |
| parent | e1cd8b0a0c90188f863ab4b4e822edbc107649dd (diff) | |
| download | mullvadvpn-207a30aee5e324bf0d9b52da89d23143efafcb73.tar.xz mullvadvpn-207a30aee5e324bf0d9b52da89d23143efafcb73.zip | |
Uppercase "secure connection"
Diffstat (limited to 'app/components/Support.js')
| -rw-r--r-- | app/components/Support.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/components/Support.js b/app/components/Support.js index 34fa0e0e9e..d97cc0d7b1 100644 --- a/app/components/Support.js +++ b/app/components/Support.js @@ -267,8 +267,8 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__status_icon}> <Img source="icon-spinner" height={60} width={60} alt="" /> </View> - <View style={styles.support__status_security__secure}>Secure Connection</View> - <Text style={styles.support__send_status}>Sending...</Text> + <View style={styles.support__status_security__secure}>{'SECURE CONNECTION'}</View> + <Text style={styles.support__send_status}>{'Sending...'}</Text> </View> </View> </View> @@ -283,8 +283,8 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__status_icon}> <Img source="icon-success" height={60} width={60} alt="" /> </View> - <Text style={styles.support__status_security__secure}>Secure Connection</Text> - <Text style={styles.support__send_status}>Sent</Text> + <Text style={styles.support__status_security__secure}>{'SECURE CONNECTION'}</Text> + <Text style={styles.support__send_status}>{'Sent'}</Text> <Text style={styles.support__sent_message}>Thanks! We will look into this.</Text> {this.state.email.trim().length > 0 ? ( @@ -307,8 +307,8 @@ export default class Support extends Component<SupportProps, SupportState> { <View style={styles.support__status_icon}> <Img source="icon-fail" height={60} width={60} alt="" /> </View> - <Text style={styles.support__status_security__secure}>Secure Connection</Text> - <Text style={styles.support__send_status}>Failed to send</Text> + <Text style={styles.support__status_security__secure}>{'SECURE CONNECTION'}</Text> + <Text style={styles.support__send_status}>{'Failed to send'}</Text> </View> </View> <View style={styles.support__footer}> |
