diff options
| -rw-r--r-- | app/components/Support.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/components/Support.js b/app/components/Support.js index 63c8599005..18baed32c4 100644 --- a/app/components/Support.js +++ b/app/components/Support.js @@ -209,10 +209,15 @@ export default class Support extends Component { <Text style={styles.support__send_status}> Sent </Text> + <Text style={styles.support__subtitle}> - Thanks! We will look into this. If needed we will contact you on {'\u00A0'} - <Text style={styles.support__sent_email}>{ this.state.email }</Text> + Thanks! We will look into this. </Text> + { this.state.email.trim().length > 0 ? + <Text style={styles.support__subtitle}>If needed we will contact you on {'\u00A0'} + <Text style={styles.support__sent_email}>{ this.state.email }</Text> + </Text> + : null } </View> </View> </View>; |
