Merge branch '299-subcategories-in-setting-in-lowercase' into 'master'
changes titles of subcategory in setting to lowercase Closes #299 See merge request bloodyhealth/drip!170
This commit is contained in:
@@ -32,7 +32,7 @@ export default function SettingsMenu(props) {
|
|||||||
key={item.title}
|
key={item.title}
|
||||||
onPress={() => props.navigate(item.component)}
|
onPress={() => props.navigate(item.component)}
|
||||||
>
|
>
|
||||||
<AppText>{item.title}</AppText>
|
<AppText>{item.title.toLowerCase()}</AppText>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user