diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/components/Settings.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/components/Settings.js b/app/components/Settings.js index b9044e49a8..b0b758b58c 100644 --- a/app/components/Settings.js +++ b/app/components/Settings.js @@ -91,10 +91,13 @@ export default class Settings extends Component { <Text style={styles.settings__cell_label}>Advanced</Text> <Img style={styles.settings__cell_disclosure} source='icon-chevron' tintColor='currentColor'/> </View> - <View style={styles.settings__cell_spacer}></View> </Button> ) : null} + {isLoggedIn ? ( + <View style={styles.settings__cell_spacer}></View> + ) : null} + <Button onPress={ this.props.onExternalLink.bind(this, 'faq') } testName='settings__external_link'> <View style={styles.settings__cell}> <Text style={styles.settings__cell_label}>FAQs</Text> |
