Merge branch '386-bug-fertility-text-is-missing-on-homescreen' into 'master'

Make sure fertility text is displayed on home screen

Closes #386

See merge request bloodyhealth/drip!228
This commit is contained in:
bl00dymarie
2019-05-28 08:17:12 +00:00
2 changed files with 5 additions and 7 deletions
+4 -6
View File
@@ -38,7 +38,7 @@ const HomeElement = ({ children, onPress, buttonColor, buttonLabel }) => {
</View>
<View style={{paddingLeft: 15}}>
{children[2]}
{children.slice(2)}
<Button
style={styles.homeButton}
onPress={ onPress }
@@ -137,11 +137,9 @@ export default class Home extends Component {
{`${labels.phase(phase)} (${status})`}
</AppText>
}
<View>
<AppText styles={styles.homeDescriptionText}>
{ `${statusText} ${links.wiki.url}.` }
</AppText>
</View>
<AppText style={styles.homeDescriptionText}>
{ `${statusText} Visit ${links.wiki.url}.` }
</AppText>
</HomeElement>
</View>
</ScrollView>